/TGame/TCommon/Entity/EntityBuilder.h

http://awoe.googlecode.com/ · C Header · 21 lines · 11 code · 5 blank · 5 comment · 0 complexity · dc3a2959680356e3dfef18175265286d MD5 · raw file

  1. #ifndef __ENTITY_CREATOR_IMP__
  2. #define __ENTITY_CREATOR_IMP__
  3. #include "Entity/EntityBuilderIf.h"
  4. //
  5. // Entity Creator Interface
  6. //
  7. class TCOM_API EntityBuilder: public IEntityBuilder
  8. {
  9. public:
  10. EntityBuilder();
  11. virtual ~EntityBuilder();
  12. //
  13. // create and delete entities
  14. virtual IEntity* build();
  15. };
  16. #endif