Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

/orxonox/trunk/core: key action support added

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