Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/core/orxonox.h @ 1860

Last change on this file since 1860 was 1860, checked in by bensch, 20 years ago

orxonox/branches/gui: merged Version of branches/bensch and trunk and modified the makefile

File size: 438 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  static void keyboard(unsigned char key, int x, int y);
26};
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.