/TGame/TCommon/Entity/EntityBuilderIf.h
http://awoe.googlecode.com/ · C Header · 21 lines · 11 code · 5 blank · 5 comment · 0 complexity · d0c0d46812ada1adc5a1914b976d0682 MD5 · raw file
- #ifndef __ENTITY_CREATOR_INTERFACE__
- #define __ENTITY_CREATOR_INTERFACE__
-
- #include "EntityIf.h"
-
- //
- // Entity Creator Interface
- //
- class TCOM_API IEntityBuilder
- {
- public:
- IEntityBuilder(){;}
- virtual ~IEntityBuilder(){;}
-
- //
- // create and delete entities
- virtual IEntity* build() = 0;
-
- };
-
- #endif