Changeset 2058 in orxonox.OLD for orxonox/branches/chris/src/orxonox.h
- Timestamp:
- Jul 2, 2004, 11:36:56 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/chris/src/orxonox.h
r1982 r2058 1 2 3 1 4 2 #ifndef ORXONOX_H 5 3 #define ORXONOX_H 6 4 7 /* standard headers */ 8 #include <iostream> 9 #include <cstdio> 5 #include <SDL/SDL.h> 10 6 11 /* openGL Headers */ 12 #include <GL/glut.h> 13 14 15 #include "environment.h" 16 #include "world.h" 17 #include "input_output.h" 18 #include "data_tank.h" 19 #include "stdincl.h" 20 #include "player.h" 7 class World; 8 class InputOutput; 9 class Player; 21 10 22 11 … … 30 19 static InputOutput* io; 31 20 static Player* localPlayer; 21 static bool bQuitOrxonox; 32 22 static bool pause; 33 23 static bool inputEnabled; … … 46 36 static void timeSlice(int value); 47 37 38 static SDL_Surface* screen; 39 48 40 public: 49 50 41 static Orxonox* getInstance (void); 51 42 … … 53 44 int menuInit (void); 54 45 int gameInit (void); 46 47 void mainLoop(); 48 55 49 void testTheShit(void); 56 50 static void display (void);
Note: See TracChangeset
for help on using the changeset viewer.