Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/collision_detection/cd_engine.h @ 4511

Last change on this file since 4511 was 4511, checked in by patrick, 19 years ago

orxonox/trunk: collision detection classes names and structures filled in

File size: 435 bytes
Line 
1/*!
2    \file cd_engine.h
3    \brief Definition of the collision detection engine
4   
5*/
6
7#ifndef _CD_ENGINE_H
8#define _CD_ENGINE_H
9
10#include "base_object.h"
11
12
13//! The class representing the collision detection system of orxonox
14class CDEngine : public BaseObject {
15
16 public:
17  static CDEngine* getInstance(void);
18  virtual ~CDEngine(void);
19
20 private:
21  CDEngine(void);
22  static CDEngine* singletonRef;
23};
24
25#endif /* _CD_ENGINE_H */
Note: See TracBrowser for help on using the repository browser.