Changeset 3449 in orxonox.OLD for orxonox/trunk/src/world_entity.h
- Timestamp:
- Mar 2, 2005, 2:23:47 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entity.h
r3396 r3449 22 22 virtual ~WorldEntity (); 23 23 24 OBJModel* model; 24 OBJModel* model; //!< The model that should be loaded for this entity. 25 25 26 26 void setCollision (CollisionCluster* newhull); … … 45 45 46 46 private: 47 const bool bFree; 48 bool bCollide; 49 bool bDraw; 47 const bool bFree; //!< If the entity is free. 48 bool bCollide; //!< If it should be considered for the collisiontest. 49 bool bDraw; //!< If it should be visible. 50 50 51 CollisionCluster* collisioncluster; 51 CollisionCluster* collisioncluster; //!< The collision-Cluster of this entity. 52 52 }; 53 53
Note: See TracChangeset
for help on using the changeset viewer.