aboutsummaryrefslogtreecommitdiff
path: root/scumm/imuse.h
diff options
context:
space:
mode:
authorMax Horn2002-11-06 15:41:36 +0000
committerMax Horn2002-11-06 15:41:36 +0000
commit80f1888b29a516be485ba8bb924ca4b33f151a03 (patch)
tree8dbdbcf3968f565a5dce1429a6cdd16b3bef2840 /scumm/imuse.h
parent63e1069ec1b64686f3d1d1a80a6b440a6adb1e2d (diff)
downloadscummvm-rg350-80f1888b29a516be485ba8bb924ca4b33f151a03.tar.gz
scummvm-rg350-80f1888b29a516be485ba8bb924ca4b33f151a03.tar.bz2
scummvm-rg350-80f1888b29a516be485ba8bb924ca4b33f151a03.zip
make it possible to #include imuse.h on its own
svn-id: r5443
Diffstat (limited to 'scumm/imuse.h')
-rw-r--r--scumm/imuse.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/scumm/imuse.h b/scumm/imuse.h
index f80b2b314f..901e6e4b33 100644
--- a/scumm/imuse.h
+++ b/scumm/imuse.h
@@ -20,8 +20,15 @@
*
*/
+#ifndef IMUSE_H
+#define IMUSE_H
+
class IMuseInternal;
class MidiDriver;
+class OSystem;
+class Scumm;
+class Serializer;
+class SoundMixer;
class IMuse {
public:
@@ -106,7 +113,7 @@ private:
bool _initialized;
} _channel[MAX_DIGITAL_CHANNELS];
- Scumm * _scumm;
+ Scumm *_scumm;
bool _pause;
public:
@@ -121,3 +128,4 @@ public:
int getSoundStatus(int sound);
};
+#endif \ No newline at end of file