Changeset 3238 in orxonox.OLD for orxonox/branches/nico/src/orxonox.h
- Timestamp:
- Dec 20, 2004, 2:42:54 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/nico/src/orxonox.h
r2995 r3238 4 4 */ 5 5 6 #ifndef ORXONOX_H7 #define ORXONOX_H6 #ifndef _ORXONOX_H 7 #define _ORXONOX_H 8 8 9 9 #include "stdincl.h" … … 22 22 23 23 private: 24 static Orxonox* singleton _ref;24 static Orxonox* singletonRef; 25 25 Orxonox (); 26 26 ~Orxonox (); … … 38 38 Uint32 lastframe; 39 39 40 void get _config_file (int argc, char** argv);40 void getConfigFile (int argc, char** argv); 41 41 42 42 // main loop functions 43 void synchronize ();44 void handle_input ();45 void time_slice ();46 void collision ();47 void display ();43 // void synchronize (); 44 //void handle_input (); 45 //void time_slice (); 46 //void collision (); 47 //void display (); 48 48 49 49 // subsystem initialization 50 int init _video ();51 int init _sound ();52 int init _input ();53 int init _networking ();54 int init _resources ();55 int init _world ();50 int initVideo (); 51 int initSound (); 52 int initInput (); 53 int initNetworking (); 54 int initResources (); 55 int initWorld (); 56 56 57 57 public: … … 60 60 void quitGame(); 61 61 62 void event _handler (SDL_Event* event);63 bool system _command (Command* cmd);62 void eventHandler (SDL_Event* event); 63 bool systemCommand (Command* cmd); 64 64 65 65 int init (int argc, char** argv); 66 66 67 CommandNode* get _localinput();68 Camera* get _camera();69 World* get _world();67 CommandNode* getLocalInput(); 68 Camera* getCamera(); 69 World* getWorld(); 70 70 71 void mainLoop();71 //void mainLoop(); 72 72 }; 73 73 74 #endif 74 #endif /* _ORXONOX_H */ 75 75
Note: See TracChangeset
for help on using the changeset viewer.