Changeset 7842 in orxonox.OLD for trunk/src/lib/collision_reaction
- Timestamp:
- May 24, 2006, 11:09:58 PM (19 years ago)
- Location:
- trunk/src/lib/collision_reaction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/collision_reaction/cr_engine.cc
r7841 r7842 46 46 47 47 48 #if 0 48 49 CollisionHandle* CREngine::subscribeReaction(WorldEntity* worldEntity, CRType type, int nrOfTargets, ...) 49 50 { 50 #if 051 51 va_list itemlist; 52 52 va_start (itemlist, type); … … 54 54 this->targetList.push_back(va_arg(itemlist, int)); 55 55 va_end(itemlist); 56 } 56 57 #endif 57 }58 58 59 59 -
trunk/src/lib/collision_reaction/cr_engine.h
r7841 r7842 16 16 class CREngine : public BaseObject 17 17 { 18 18 #if 0 19 19 typedef enum CRType { 20 20 CR_CONSERVATION_OF_MOMENTUM = 0, … … 29 29 CR_NUMBER 30 30 }; 31 31 #endif 32 32 33 33 public:
Note: See TracChangeset
for help on using the changeset viewer.