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