Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 3, 2006, 4:55:19 PM (17 years ago)
Author:
patrick
Message:

removed most of the compiler bugs. more to come

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/coll_rect/src/lib/collision_reaction/cr_engine.h

    r9986 r9988  
    3131    ObjectListDeclaration(CREngine);
    3232
     33    typedef std::vector<CollisionEvent*>             CollisionEventVector;
     34    typedef std::vector<Collision*>                  CollisionVector;
    3335    typedef std::vector<Collision*>::iterator        CollisionIterator;
    3436    typedef std::vector<CollisionEvent*>::iterator   CollisionEventIterator;
     
    9092    static CREngine*                    singletonRef;             //!< the reference to the CREngine object (singleton)
    9193
    92     std::vector<Collision*>             collisionsUsed;           //!< a list of used, cached collisions
    93     std::vector<Collision*>             collisionsUnused;         //!< a list of unused, cached collisions
     94    CollisionVector                     collisionsUsed;           //!< a list of used, cached collisions
     95    CollisionVector                     collisionsUnused;         //!< a list of unused, cached collisions
    9496
    95     std::vector<CollisionEvent*>        collisionEventsUsed;      //!< a list of used, cached collision events
    96     std::vector<CollisionEvent*>        collisionEventsUnused;    //!< a list of unused, cached collision events
     97    CollisionEventVector                collisionEventsUsed;      //!< a list of used, cached collision events
     98    CollisionEventVector                collisionEventsUnused;    //!< a list of unused, cached collision events
    9799
    98100    CollisionReaction*                  _reactionList[CREngine::CR_NUMBER];  //!< the collision reaction list containing all reactions types
Note: See TracChangeset for help on using the changeset viewer.