Changeset 1872 in orxonox.OLD for orxonox/trunk/core/orxonox.h
- Timestamp:
- May 6, 2004, 10:50:39 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/core/orxonox.h
r1859 r1872 1 1 2 #include "world.h" 2 3 3 4 4 #ifndef ORXONOX_H 5 5 #define ORXONOX_H 6 6 7 #define NULL 0 7 /* standard headers */ 8 #include <iostream> 9 #include <cstdio> 10 11 /* openGL Headers */ 12 #include <GL/glut.h> 13 14 #include "world.h" 15 #include "input_output.h" 16 #include "data_tank.h" 17 #include "stdincl.h" 18 19 8 20 9 21 class Orxonox { 10 22 11 23 private: 12 static Orxonox *singleton_ref;24 static Orxonox* singleton_ref; 13 25 Orxonox (); 14 26 ~Orxonox (); 27 static World* world; 28 static InputOutput* io; 29 static bool pause; 15 30 16 31 public: … … 21 36 int menuInit (void); 22 37 int gameInit (void); 38 void testTheShit(void); 23 39 static void display (void); 40 static void continousRedraw(void); 24 41 static void reshape (int w, int h); 25 42 static void keyboard(unsigned char key, int x, int y);
Note: See TracChangeset
for help on using the changeset viewer.