summaryrefslogtreecommitdiffstats
path: root/src/object/mainmovie.h
diff options
context:
space:
mode:
authorMichał Konopacki <konopacki.m@gmail.com>2012-09-15 16:54:35 +0200
committerMichał Konopacki <konopacki.m@gmail.com>2012-09-15 16:54:35 +0200
commit95d2f8da2c1df9a02fc1d668f2ce9c0b64c4bf65 (patch)
tree4bca38da7bc4983d47192adfcc3cc01407cfb776 /src/object/mainmovie.h
parentd439f4fa93eb45175dcdfa773af8f68efa1bad9d (diff)
parenta1400f496bbe9f78f71736dce43863b6833be669 (diff)
downloadcolobot-95d2f8da2c1df9a02fc1d668f2ce9c0b64c4bf65.tar.gz
colobot-95d2f8da2c1df9a02fc1d668f2ce9c0b64c4bf65.tar.bz2
colobot-95d2f8da2c1df9a02fc1d668f2ce9c0b64c4bf65.zip
Merge branch 'dev-object' into dev
Conflicts: src/object/robotmain.cpp src/object/robotmain.h
Diffstat (limited to 'src/object/mainmovie.h')
-rw-r--r--src/object/mainmovie.h17
1 files changed, 6 insertions, 11 deletions
diff --git a/src/object/mainmovie.h b/src/object/mainmovie.h
index 0c8d51c..27e4df3 100644
--- a/src/object/mainmovie.h
+++ b/src/object/mainmovie.h
@@ -24,17 +24,14 @@
class CInstanceManager;
-class CEvent;
-class CInterface;
class CRobotMain;
-class CCamera;
class CSoundInterface;
namespace Gfx
{
+ class CCamera;
class CEngine;
-} /* Gfx */
-
+};
enum MainMovieType
{
@@ -56,18 +53,16 @@ public:
bool Stop();
bool IsExist();
bool EventProcess(const Event &event);
- MainMovieType RetType();
- MainMovieType RetStopType();
+ MainMovieType GetType();
+ MainMovieType GetStopType();
protected:
protected:
- CInstanceManager* m_iMan;
- CEvent* m_event;
+ CInstanceManager* m_iMan;
Gfx::CEngine* m_engine;
- CInterface* m_interface;
CRobotMain* m_main;
- CCamera* m_camera;
+ Gfx::CCamera* m_camera;
CSoundInterface* m_sound;
MainMovieType m_type;