/TGame/TServerMS/Scene/SceneInstance.h
http://awoe.googlecode.com/ · C Header · 28 lines · 13 code · 9 blank · 6 comment · 0 complexity · b9711b3b4e6536c2f02b0e1667471c81 MD5 · raw file
- #ifndef __SCENE_INSTANCE_BASE_IMP___
- #define __SCENE_INSTANCE_BASE_IMP___
-
-
- #include "Scene/SceneB.h"
- #include "Entity/EntityManager.h"
-
- class SceneInstance : public SceneB
- {
- public:
- //
- // callback to load scene datas
- //
- virtual bool onLoad();
-
-
-
- //
- // entity management
- //
- virtual IEntityManager* getEntityMgr();
- protected:
-
- EntityManager m_ettMgrs;
- };
-
-
- #endif