Changeset 7964 in orxonox.OLD for branches/cr/src/lib/collision_reaction/collision_event.h
- Timestamp:
- May 30, 2006, 12:48:16 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/cr/src/lib/collision_reaction/collision_event.h
r7959 r7964 26 26 27 27 /** @return CollisionEvent WorldEntity A */ 28 inline constWorldEntity* getEntityA() const { return this->entityA; }28 inline WorldEntity* getEntityA() const { return this->entityA; } 29 29 /** @return CollisionEvent WorldEntity B */ 30 inline constWorldEntity* getEntityB() const { return this->entityB; }30 inline WorldEntity* getEntityB() const { return this->entityB; } 31 31 /** @return Bounding Volume from EntityA */ 32 inline constBoundingVolume* getBVA() const { return this->bvA; }32 inline BoundingVolume* getBVA() const { return this->bvA; } 33 33 /** @return Bounding Volume from EntityB */ 34 inline constBoundingVolume* getBVB() const { return this->bvB; }34 inline BoundingVolume* getBVB() const { return this->bvB; } 35 35 36 36
Note: See TracChangeset
for help on using the changeset viewer.