CmMesh.cpp 543 B

123456789101112131415161718192021222324
  1. #include "CmMesh.h"
  2. #include "CmMeshST.h"
  3. namespace CamelotEngine
  4. {
  5. void Mesh::load()
  6. {
  7. throw std::exception("The method or operation is not implemented.");
  8. }
  9. /************************************************************************/
  10. /* SERIALIZATION */
  11. /************************************************************************/
  12. RTTITypeBase* Mesh::getRTTIStatic()
  13. {
  14. return MeshST::instance();
  15. }
  16. RTTITypeBase* Mesh::getRTTI() const
  17. {
  18. return Mesh::getRTTIStatic();
  19. }
  20. }