/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

  1. #ifndef __SCENE_INSTANCE_BASE_IMP___
  2. #define __SCENE_INSTANCE_BASE_IMP___
  3. #include "Scene/SceneB.h"
  4. #include "Entity/EntityManager.h"
  5. class SceneInstance : public SceneB
  6. {
  7. public:
  8. //
  9. // callback to load scene datas
  10. //
  11. virtual bool onLoad();
  12. //
  13. // entity management
  14. //
  15. virtual IEntityManager* getEntityMgr();
  16. protected:
  17. EntityManager m_ettMgrs;
  18. };
  19. #endif