Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 7, 2005, 11:50:01 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: implemented some test functions, that don't work untils now: some link error when compiling the collision_detection/framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/collision_detection/cd_engine.h

    r4541 r4546  
    3434  virtual ~CDEngine(void);
    3535  /** \returns a Pointer to the only object of this Class */
    36   inline static CDEngine* getInstance(void) { if (!singletonRef) singletonRef = new CDEngine();  return singletonRef; };
     36  static CDEngine* getInstance(void) { if (!singletonRef) singletonRef = new CDEngine(); return singletonRef; }
    3737  void init();
    3838
     
    4747
    4848  void checkCollisions();
     49
     50  void debug();
    4951
    5052 private:
Note: See TracChangeset for help on using the changeset viewer.