Changeset 911 for code/branches/script/src/orxonox/GraphicsEngine.h
- Timestamp:
- Mar 20, 2008, 3:56:23 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/script/src/orxonox/GraphicsEngine.h
r790 r911 14 14 15 15 #include "OrxonoxPrereqs.h" 16 #include "core/BaseObject.h" 16 17 17 18 … … 21 22 * graphics engine manager class 22 23 */ 23 class _OrxonoxExport GraphicsEngine { 24 class _OrxonoxExport GraphicsEngine : public BaseObject 25 { 24 26 public: 25 27 GraphicsEngine(); … … 27 29 // find a better way for this 28 30 inline Ogre::Root* getRoot() { return root_; }; 31 void setConfigValues(); 29 32 void setup(); 30 bool load( );33 bool load(std::string path); 31 34 void loadRessourceLocations(std::string path); 32 35 Ogre::SceneManager* getSceneManager(); … … 39 42 std::string dataPath_; //!< path to data file 40 43 Ogre::SceneManager* scene_; //!< scene manager of the game 44 bool bOverwritePath_; //!< overwrites path 41 45 42 46 };
Note: See TracChangeset
for help on using the changeset viewer.