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
Line 
1#ifndef ORXONOX_H
2#define ORXONOX_H
3
4#define NULL 0
5
6class Orxonox {
7
8 private:
9  static Orxonox *singleton_ref;
10  Orxonox ();
11  ~Orxonox ();
12
13 public:
14
15  static Orxonox* getInstance (void);
16
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);
22};
23
24#endif
25
Note: See TracBrowser for help on using the repository browser.