Changeset 4446 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 1, 2005, 10:32:55 PM (19 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/orxonox.cc
r4445 r4446 257 257 258 258 /** 259 \brief exits Orxonox260 */261 void Orxonox::quitGame()262 {263 bQuitOrxonox = true;264 }265 266 267 268 /**269 259 \brief handles sprecial events from localinput 270 260 \param event: an event not handled by the CommandNode -
orxonox/trunk/src/orxonox.h
r4445 r4446 7 7 #define _ORXONOX_H 8 8 9 #include "glincl.h"10 9 #include "event_listener.h" 11 10 12 13 14 11 class WorldEntity; 15 class World;16 class Camera;17 12 class GameLoader; 18 13 class ResourceManager; … … 33 28 34 29 void start(); 35 void quitGame();36 30 37 31 void graphicsHandler (SDL_Event* event); … … 45 39 int initResources (); 46 40 41 void getConfigFile (int argc, char** argv); 42 47 43 private: 48 44 static Orxonox* singletonRef; … … 55 51 EventHandler* eventHandler; 56 52 57 bool bQuitOrxonox; //!< If Orxonox should Quit58 bool pause; //!< Pause mode59 Uint32 lastframe; //!< Time of the last Frame60 61 53 unsigned int argc; //!< Count of Arguments of orxonox 62 54 char** argv; //!< Values of th Arguments of orxonox. 63 64 void getConfigFile (int argc, char** argv);65 66 67 68 55 }; 69 56
Note: See TracChangeset
for help on using the changeset viewer.