Changeset 8239 in orxonox.OLD for branches/script_engine/src/story_entities
- Timestamp:
- Jun 8, 2006, 1:53:06 PM (19 years ago)
- Location:
- branches/script_engine/src/story_entities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/script_engine/src/story_entities/game_world.cc
r8037 r8239 181 181 this->dataXML = (TiXmlElement*)root->Clone(); 182 182 183 LoadParamXML(root, "ScriptManager", &this->scriptManager, ScriptManager, loadParams); 184 183 185 delete XMLDoc; 184 186 this->releaseLoadScreen(); … … 213 215 this->bPaused = false; 214 216 this->bRunning = true; 217 218 State::setScripManager(&this->scriptManager); 215 219 216 220 this->run(); -
branches/script_engine/src/story_entities/game_world.h
r7919 r8239 11 11 #include "game_world_data.h" 12 12 #include "playable.h" 13 #include "script_manager.h" 13 14 14 15 namespace OrxShell { class Shell; }; 15 16 class WorldEntity; 16 17 class GameRules; 18 17 19 18 20 /** How many frames time values to keep … … 102 104 GameRules* gameRules; //!< Pointer to the data structure containig the game rules 103 105 104 105 106 private: 106 107 /* external modules interfaces */ 108 ScriptManager scriptManager; 107 109 OrxShell::Shell* shell; 108 110 };
Note: See TracChangeset
for help on using the changeset viewer.