| 123456789101112131415161718192021222324 |
- #include "CmMesh.h"
- #include "CmMeshST.h"
- namespace CamelotEngine
- {
- void Mesh::load()
- {
- throw std::exception("The method or operation is not implemented.");
- }
- /************************************************************************/
- /* SERIALIZATION */
- /************************************************************************/
- RTTITypeBase* Mesh::getRTTIStatic()
- {
- return MeshST::instance();
- }
- RTTITypeBase* Mesh::getRTTI() const
- {
- return Mesh::getRTTIStatic();
- }
- }
|