summaryrefslogtreecommitdiffstats
path: root/src/app/app.h
diff options
context:
space:
mode:
authorerihel <erihel@gmail.com>2012-09-22 00:11:16 +0200
committererihel <erihel@gmail.com>2012-09-22 00:11:16 +0200
commit15ff1d512b9e103396144bec1cd8004ecf4f7f9c (patch)
treedf57c12ca30d8691c40b7041a35c8deac253ad21 /src/app/app.h
parentf5bc8e12d477a91c7d950675af81e074a94d6036 (diff)
downloadcolobot-15ff1d512b9e103396144bec1cd8004ecf4f7f9c.tar.gz
colobot-15ff1d512b9e103396144bec1cd8004ecf4f7f9c.tar.bz2
colobot-15ff1d512b9e103396144bec1cd8004ecf4f7f9c.zip
* Fixed audio problems
* Added colobot.ini to CApp in Create function * Fixes to plugin manager * Fixed CProfile segfault
Diffstat (limited to 'src/app/app.h')
-rw-r--r--src/app/app.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/app/app.h b/src/app/app.h
index 03199aa..06879ae 100644
--- a/src/app/app.h
+++ b/src/app/app.h
@@ -30,6 +30,8 @@
#include "graphics/engine/engine.h"
#include "graphics/opengl/gldevice.h"
+#include "plugins/pluginmanager.h"
+
#include <string>
#include <vector>
@@ -331,6 +333,8 @@ protected:
CSoundInterface* m_sound;
//! Main class of the proper game engine
CRobotMain* m_robotMain;
+ CPluginManager* m_pluginManager;
+ CProfile* m_profile;
//! Code to return at exit
int m_exitCode;