Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 24, 2006, 11:07:38 PM (18 years ago)
Author:
patrick
Message:

trunk: collision handle introduced and other stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/collision_reaction/cr_engine.cc

    r7819 r7841  
    4343  CREngine::singletonRef = NULL;
    4444}
     45
     46
     47
     48CollisionHandle* CREngine::subscribeReaction(WorldEntity* worldEntity, CRType type, int nrOfTargets, ...)
     49{
     50#if 0
     51  va_list itemlist;
     52  va_start (itemlist, type);
     53  for (int i = 0; i < faceElemCount; i++)
     54    this->targetList.push_back(va_arg(itemlist, int));
     55  va_end(itemlist);
     56#endif
     57}
     58
     59
     60
Note: See TracChangeset for help on using the changeset viewer.