Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk/core: test routines added, other minor changes

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