- Timestamp:
- Jun 1, 2005, 10:37:07 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/orxonox.h
r4446 r4447 21 21 class Orxonox : public EventListener { 22 22 23 24 23 public: 25 24 static Orxonox* getInstance (); … … 33 32 34 33 private: 34 Orxonox (); 35 35 36 int initVideo (); 36 37 int initSound (); … … 42 43 43 44 private: 44 static Orxonox* singletonRef; 45 Orxonox (); 45 static Orxonox* singletonRef; //!< singleton reference to orxonox 46 46 47 char configfilename[256];//!< Filename of the configuration-file.48 GameLoader* gameLoader;//!< The gameLoader49 ResourceManager* resourceManager;//!< The ResourceManager50 ObjectManager* objectManager;//!< the object manager of the game51 EventHandler* eventHandler;47 char configfilename[256]; //!< Filename of the configuration-file. 48 GameLoader* gameLoader; //!< The gameLoader 49 ResourceManager* resourceManager; //!< The ResourceManager 50 ObjectManager* objectManager; //!< the object manager of the game 51 EventHandler* eventHandler; //!< the eventhandler of orxonox is created here 52 52 53 unsigned int argc;//!< Count of Arguments of orxonox54 char** argv;//!< Values of th Arguments of orxonox.53 unsigned int argc; //!< Count of Arguments of orxonox 54 char** argv; //!< Values of th Arguments of orxonox. 55 55 }; 56 57 58 56 59 57 60 int startHelp(int argc, char** argv);
Note: See TracChangeset
for help on using the changeset viewer.