Changeset 8081 in orxonox.OLD for branches/bsp_model/src/world_entities/bsp_entity.h
- Timestamp:
- Jun 1, 2006, 4:42:01 PM (19 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/bsp_model/src/world_entities/bsp_entity.h
r7540 r8081 1 1 /*! 2 * @file proto_world_entity.h2 * @file bsp_entity.h 3 3 * @brief description 4 4 */ 5 5 6 #ifndef _ PROTO_WORLD_ENTITY_H7 #define _ PROTO_WORLD_ENTITY_H6 #ifndef _BSP_ENTITY_H 7 #define _BSP_ENTITY_H 8 8 9 9 #include "world_entity.h" 10 #include "bsp_manager.h" 11 12 #include "util/loading/factory.h" 13 #include "util/loading/load_param.h" 14 15 10 16 11 17 //! A Class to ... 12 class ProtoWorldEntity : public WorldEntity18 class BSPEntity : public WorldEntity 13 19 { 14 20 15 21 public: 16 ProtoWorldEntity(const TiXmlElement* root = NULL);17 virtual ~ ProtoWorldEntity();22 BSPEntity(const TiXmlElement* root = NULL); 23 virtual ~BSPEntity(); 18 24 19 25 virtual void loadParams(const TiXmlElement* root); 26 27 void setName(const std::string& name); 28 20 29 void init(); 21 22 virtual void postSpawn ();23 virtual void leftWorld ();24 25 30 26 31 virtual void draw() const; … … 29 34 30 35 private: 36 BspManager* bspManager; 31 37 32 38 }; 33 39 34 #endif /* _ PROTO_WORLD_ENTITY_H */40 #endif /* _BSP_ENTITY_H */
Note: See TracChangeset
for help on using the changeset viewer.