aboutsummaryrefslogtreecommitdiff
path: root/scumm/player_v2.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/player_v2.h')
-rw-r--r--scumm/player_v2.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/scumm/player_v2.h b/scumm/player_v2.h
index 437fd0b365..55af6970c2 100644
--- a/scumm/player_v2.h
+++ b/scumm/player_v2.h
@@ -27,6 +27,12 @@
#include "common/system.h"
#include "scumm/music.h"
+class SoundMixer;
+
+namespace Scumm {
+
+class ScummEngine;
+
#if !defined(__GNUC__)
#pragma START_PACK_STRUCTS
#endif
@@ -66,11 +72,6 @@ union ChannelInfo {
uint16 array[sizeof(channel_data)/2];
};
-
-class ScummEngine;
-class SoundMixer;
-
-
class Player_V2 : public MusicEngine {
public:
Player_V2(ScummEngine *scumm);
@@ -145,4 +146,6 @@ private:
void next_freqs(ChannelInfo *channel);
};
+} // End of namespace Scumm
+
#endif