/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
- #ifndef __ENTITY_CREATOR_IMP__
- #define __ENTITY_CREATOR_IMP__
-
- #include "Entity/EntityBuilderIf.h"
-
- //
- // Entity Creator Interface
- //
- class TCOM_API EntityBuilder: public IEntityBuilder
- {
- public:
- EntityBuilder();
- virtual ~EntityBuilder();
-
- //
- // create and delete entities
- virtual IEntity* build();
- };
-
- #endif