summaryrefslogtreecommitdiffstats
path: root/src/app/app.h
diff options
context:
space:
mode:
authorPiotr Dziwinski <piotrdz@gmail.com>2012-09-15 22:19:32 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2012-09-15 22:19:32 +0200
commitaf9af56bb007050c969af310c4e816d260b9ce7f (patch)
treef630dbaffcae46fec4e83740e79d2bf3eef9cbc6 /src/app/app.h
parent2847aad51fb8165d3ad6fab3ddb1f0275a6f0815 (diff)
downloadcolobot-af9af56bb007050c969af310c4e816d260b9ce7f.tar.gz
colobot-af9af56bb007050c969af310c4e816d260b9ce7f.tar.bz2
colobot-af9af56bb007050c969af310c4e816d260b9ce7f.zip
Successful compilation & running
- temporarily mocked CSoundInterface and CPluginInterface - added CRobotMain to application - successfully compiles & runs, but doesn't display correctly at the moment
Diffstat (limited to 'src/app/app.h')
-rw-r--r--src/app/app.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/app.h b/src/app/app.h
index 4d567e0..1834a67 100644
--- a/src/app/app.h
+++ b/src/app/app.h
@@ -35,7 +35,7 @@
class CInstanceManager;
class CEvent;
class CRobotMain;
-class CSound;
+class CSoundInterface;
/**
* \struct JoystickDevice
@@ -366,7 +366,7 @@ protected:
//! Graphics device
Gfx::CDevice* m_device;
//! Sound subsystem
- CSound* m_sound;
+ CSoundInterface* m_sound;
//! Main class of the proper game engine
CRobotMain* m_robotMain;