Changeset 8029 in orxonox.OLD for branches/cr/src/lib/collision_reaction/collision.h
- Timestamp:
- May 31, 2006, 3:18:19 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cr/src/lib/collision_reaction/collision.h
r8006 r8029 31 31 inline WorldEntity* getEntityB() const { return this->entityB; } 32 32 33 /** @returns true if this Collision has already been dispatched */ 34 inline bool isDispatched() { return this->bDispatched; } 35 33 36 /** registers a @param event CollisionEvent to take place */ 34 37 inline void registerCollisionEvent(CollisionEvent* event) { this->collisionEvents.push_back(event); } … … 47 50 WorldEntity* entityB; //!< the collision body B 48 51 52 bool bDispatched; //!< true if this collision has already been dispatched 53 49 54 std::vector<CollisionEvent*> collisionEvents; //!< the collision event list 50 55 };
Note: See TracChangeset
for help on using the changeset viewer.