summaryrefslogtreecommitdiffstats
path: root/src/object/mainmovie.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/mainmovie.h')
-rw-r--r--src/object/mainmovie.h30
1 files changed, 16 insertions, 14 deletions
diff --git a/src/object/mainmovie.h b/src/object/mainmovie.h
index 23721fb..0c8d51c 100644
--- a/src/object/mainmovie.h
+++ b/src/object/mainmovie.h
@@ -25,13 +25,15 @@
class CInstanceManager;
class CEvent;
-class CD3DEngine;
class CInterface;
class CRobotMain;
class CCamera;
-class CSound;
-
+class CSoundInterface;
+namespace Gfx
+{
+ class CEngine;
+} /* Gfx */
enum MainMovieType
@@ -61,17 +63,17 @@ protected:
protected:
CInstanceManager* m_iMan;
- CEvent* m_event;
- CD3DEngine* m_engine;
- CInterface* m_interface;
- CRobotMain* m_main;
- CCamera* m_camera;
- CSound* m_sound;
-
- MainMovieType m_type;
- MainMovieType m_stopType;
- float m_speed;
- float m_progress;
+ CEvent* m_event;
+ Gfx::CEngine* m_engine;
+ CInterface* m_interface;
+ CRobotMain* m_main;
+ CCamera* m_camera;
+ CSoundInterface* m_sound;
+
+ MainMovieType m_type;
+ MainMovieType m_stopType;
+ float m_speed;
+ float m_progress;
Math::Vector m_initialEye;
Math::Vector m_initialLookat;
Math::Vector m_finalEye[2];