aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/sound.h
diff options
context:
space:
mode:
authorDavid Corrales2007-08-05 19:34:20 +0000
committerDavid Corrales2007-08-05 19:34:20 +0000
commit6856535010bd2fa4449bcfde1c88dc06cd46e26f (patch)
treeb81a2234c2beff0312c93e039d6cafda4babeca6 /engines/parallaction/sound.h
parent1400d28bfb37fc94f3c44dec0a4d0cef65fb8fb7 (diff)
parentec1803f838d5efc7decf75c05a1fb4a9633751e5 (diff)
downloadscummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.tar.gz
scummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.tar.bz2
scummvm-rg350-6856535010bd2fa4449bcfde1c88dc06cd46e26f.zip
Merged fsnode with trunk: r27971:28460
svn-id: r28462
Diffstat (limited to 'engines/parallaction/sound.h')
-rw-r--r--engines/parallaction/sound.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/engines/parallaction/sound.h b/engines/parallaction/sound.h
index f244bd4070..7a903ec790 100644
--- a/engines/parallaction/sound.h
+++ b/engines/parallaction/sound.h
@@ -108,6 +108,22 @@ public:
void playLocationMusic(const char *location);
};
+class DummySoundMan : public SoundMan {
+
+public:
+ DummySoundMan(Parallaction *vm) : SoundMan(vm) { }
+ ~DummySoundMan() { }
+ void playMusic() { }
+ void stopMusic() { }
+
+ void playSfx(const char *filename, uint channel, bool looping, int volume, int rate) { }
+ void stopSfx(uint channel) { }
+
+ void playCharacterMusic(const char *character) { }
+ void playLocationMusic(const char *location) { }
+
+};
+
} // namespace Parallaction
#endif