Changeset 1850 in orxonox.OLD for orxonox/trunk/core/orxonox.h
- Timestamp:
- Apr 21, 2004, 1:11:19 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/core/orxonox.h
r1803 r1850 2 2 #define ORXONOX_H 3 3 4 #define NULL 0 5 4 6 class Orxonox { 5 7 8 private: 9 static Orxonox *singleton_ref; 10 Orxonox (); 11 ~Orxonox (); 12 6 13 public: 7 Orxonox();8 ~Orxonox();9 14 10 int globalInit(int argc, char** argv); 11 int menuInit(); 12 int gameInit(); 15 static Orxonox* getInstance (void); 13 16 17 int globalInit (int argc, char** argv); 18 int menuInit (void); 19 int gameInit (void); 20 static void display (void); 21 static void reshape (int w, int h); 14 22 }; 15 23 16 24 #endif 25
Note: See TracChangeset
for help on using the changeset viewer.