Changeset 708 for code/branches/FICN/src/orxonox/Orxonox.h
- Timestamp:
- Dec 28, 2007, 10:30:29 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/orxonox/Orxonox.h
r682 r708 13 13 #include "OrxonoxPrereqs.h" 14 14 #include "loader/LoaderPrereqs.h" 15 16 #include "misc/String.h" 15 17 #include "GraphicsEngine.h" 16 18 … … 30 32 { 31 33 public: 32 void init(int argc, char **argv, std::string path);34 void init(int argc, char **argv, String path); 33 35 void start(); 34 36 // not sure if this should be private … … 46 48 virtual ~Orxonox(); 47 49 // init functions 48 void serverInit( std::string path);49 void clientInit( std::string path);50 void standaloneInit( std::string path);50 void serverInit(String path); 51 void clientInit(String path); 52 void standaloneInit(String path); 51 53 // run functions 52 void playableServer( std::string path);54 void playableServer(String path); 53 55 void standalone(); 54 56 void defineResources(); … … 64 66 private: 65 67 GraphicsEngine* ogre_; //!< our dearest graphics engine <3 66 std::string dataPath_; //!< path to data68 String dataPath_; //!< path to data 67 69 loader::LevelLoader* loader_; //!< level loader builds the scene 68 70 audio::AudioManager* auMan_; //!< audio manager … … 77 79 // this is used to identify the mode (server/client/...) we're in 78 80 gameMode mode_; 79 std::string serverIp_;81 String serverIp_; 80 82 }; 81 83 }
Note: See TracChangeset
for help on using the changeset viewer.