Merge branch 'feature/interactionhandler' into develop

Conflicts:
	include/openspace/engine/openspaceengine.h
	include/openspace/interaction/interactionhandler.h
	src/engine/openspaceengine.cpp
	src/interaction/interactionhandler.cpp
	src/rendering/renderengine.cpp
This commit is contained in:
Alexander Bock
2014-11-18 15:46:26 +01:00
18 changed files with 2081 additions and 511 deletions

View File

@@ -52,7 +52,7 @@ public:
static bool findConfiguration(std::string& filename);
ConfigurationManager& configurationManager();
InteractionHandler& interactionHandler();
interaction::InteractionHandler& interactionHandler();
RenderEngine& renderEngine();
scripting::ScriptEngine& scriptEngine();
@@ -86,7 +86,7 @@ private:
static OpenSpaceEngine* _engine;
ConfigurationManager _configurationManager;
InteractionHandler _interactionHandler;
interaction::InteractionHandler _interactionHandler;
RenderEngine _renderEngine;
scripting::ScriptEngine _scriptEngine;
ghoul::cmdparser::CommandlineParser _commandlineParser;