Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2006, 12:48:16 AM (19 years ago)
Author:
patrick
Message:

cr: deep structure with Collision and CollisionEvent created. list cleanup missing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/cr/src/lib/collision_reaction/collision_event.h

    r7959 r7964  
    2626
    2727  /** @return CollisionEvent WorldEntity A */
    28   inline const WorldEntity* getEntityA() const { return this->entityA; }
     28  inline WorldEntity* getEntityA() const { return this->entityA; }
    2929  /** @return CollisionEvent WorldEntity B */
    30   inline const WorldEntity* getEntityB() const { return this->entityB; }
     30  inline WorldEntity* getEntityB() const { return this->entityB; }
    3131  /** @return Bounding Volume from EntityA */
    32   inline const BoundingVolume* getBVA() const { return this->bvA; }
     32  inline BoundingVolume* getBVA() const { return this->bvA; }
    3333  /** @return Bounding Volume from EntityB */
    34   inline const BoundingVolume* getBVB() const { return this->bvB; }
     34  inline BoundingVolume* getBVB() const { return this->bvB; }
    3535
    3636
Note: See TracChangeset for help on using the changeset viewer.