Changeset 5047 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Aug 16, 2005, 9:26:28 PM (19 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/environment.cc
r5042 r5047 44 44 */ 45 45 Environment::~Environment () 46 { 46 {} 47 47 48 }49 48 50 49 /** … … 54 53 void Environment::tick (float time) {} 55 54 56 /**57 * if a hit occures58 */59 void Environment::hit (WorldEntity* weapon, Vector* loc) {}60 61 /**62 * destroys an Environment63 */64 void Environment::destroy () {}65 66 /**67 * a collision with some ship68 */69 void Environment::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {}70 55 71 56 /** -
orxonox/trunk/src/world_entities/environment.h
r4490 r5047 14 14 Environment is a container for all the worldEntities that are non-interactive 15 15 */ 16 class Environment : public WorldEntity 16 class Environment : public WorldEntity 17 17 { 18 18 friend class World; … … 22 22 virtual ~Environment (); 23 23 24 24 25 25 virtual void tick (float time); 26 virtual void hit (WorldEntity* weapon, Vector* loc); 27 virtual void destroy (); 28 virtual void collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags); 26 29 27 virtual void draw (); 30 28
Note: See TracChangeset
for help on using the changeset viewer.