diff options
| -rw-r--r-- | scumm/imuse.h | 10 |
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 |
