Changeset 4689 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- Jun 24, 2005, 3:06:04 PM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/world_entity.cc
r4684 r4689 130 130 Implement behaviour like damage application or other miscellaneous collision stuff in this function 131 131 */ 132 void WorldEntity::collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags) {}132 void WorldEntity::collideWith(WorldEntity* entity) {} 133 133 134 134 -
orxonox/trunk/src/world_entities/world_entity.h
r4684 r4689 47 47 48 48 virtual void hit (WorldEntity* weapon, Vector* loc); 49 virtual void collide (WorldEntity* other, Uint32 ownhitflags, Uint32 otherhitflags);49 virtual void collideWith (WorldEntity* entity); 50 50 virtual void command (Command* cmd); 51 51
Note: See TracChangeset
for help on using the changeset viewer.