- Timestamp:
- Oct 30, 2017, 4:05:01 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/ScriptableController_HS17/src/orxonox/Level.h
r11071 r11518 42 42 namespace orxonox 43 43 { 44 class ScriptableController; 45 44 46 class _OrxonoxExport Level : public BaseObject, public Synchronisable, public Context 45 47 { … … 78 80 void networkcallback_applyXMLFile(); 79 81 82 inline void setScript(const std::string &script) 83 { this->level_script_ = script; } 84 85 80 86 std::string pluginsString_; 81 87 std::list<PluginReference*> plugins_; 82 83 88 std::string gametype_; 84 89 std::string xmlfilename_; … … 86 91 std::list<BaseObject*> objects_; 87 92 std::map<std::string,MeshLodInformation*> lodInformation_; 93 94 std::unique_ptr<ScriptableController> controller_; 95 std::string level_script_; 88 96 }; 89 97 }
Note: See TracChangeset
for help on using the changeset viewer.