Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/core/orxonox.h @ 1855

Last change on this file since 1855 was 1850, checked in by patrick, 20 years ago

orxonox/trunk: new Makfile, orxonox with window, data_tank added

File size: 360 bytes
RevLine 
[1803]1#ifndef ORXONOX_H
2#define ORXONOX_H
3
[1850]4#define NULL 0
5
[1803]6class Orxonox {
7
[1850]8 private:
9  static Orxonox *singleton_ref;
10  Orxonox ();
11  ~Orxonox ();
12
[1803]13 public:
14
[1850]15  static Orxonox* getInstance (void);
[1803]16
[1850]17  int globalInit (int argc, char** argv);
18  int menuInit (void);
19  int gameInit (void);
20  static void display (void);
21  static void reshape (int w, int h);
[1803]22};
23
24#endif
[1850]25
Note: See TracBrowser for help on using the repository browser.