Changeset 568 for code/branches/FICN/src/orxonox/orxonox.h
- Timestamp:
- Dec 17, 2007, 12:09:13 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/orxonox.h
r531 r568 23 23 namespace orxonox { 24 24 25 enum gameMode{ 26 STANDALONE, 27 SERVER, 28 CLIENT, 29 PRESENTATION 30 }; 31 25 32 class OrxListener; 26 33 … … 39 46 Orxonox(); 40 47 virtual ~Orxonox(); 48 // init functions 41 49 void serverInit(std::string path); 42 50 void clientInit(std::string path); 43 void standalone(std::string path); 51 void standaloneInit(std::string path); 52 // run functions 44 53 void playableServer(std::string path); 54 void standalone(); 45 55 void defineResources(); 46 56 void setupRenderSystem(); … … 65 75 OrxListener* frameListener_; 66 76 Ogre::Root* root_; 77 78 // this is used to identify the mode (server/client/...) we're in 79 gameMode mode_; 67 80 }; 68 81 }
Note: See TracChangeset
for help on using the changeset viewer.