Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 30, 2017, 4:05:01 PM (8 years ago)
Author:
kohlia
Message:

Nothing to see yet, really.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/ScriptableController_HS17/src/orxonox/Level.h

    r11071 r11518  
    4242namespace orxonox
    4343{
     44    class ScriptableController;
     45
    4446    class _OrxonoxExport Level : public BaseObject, public Synchronisable, public Context
    4547    {
     
    7880            void networkcallback_applyXMLFile();
    7981
     82            inline void setScript(const std::string &script)
     83                { this->level_script_ = script; }
     84
     85
    8086            std::string                    pluginsString_;
    8187            std::list<PluginReference*>    plugins_;
    82 
    8388            std::string                    gametype_;
    8489            std::string                    xmlfilename_;
     
    8691            std::list<BaseObject*>         objects_;
    8792            std::map<std::string,MeshLodInformation*>  lodInformation_;
     93
     94            std::unique_ptr<ScriptableController> controller_;
     95            std::string                           level_script_;
    8896    };
    8997}
Note: See TracChangeset for help on using the changeset viewer.