aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/sound.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-11-20 20:11:23 -0500
committerPaul Gilbert2015-11-20 20:11:23 -0500
commitb6e39dbf79801b5d96ca9292a47825d39f1e3fb4 (patch)
tree272f7b47dc4188e941c261ca9f5c13c5dd40ad6c /engines/xeen/sound.h
parent619a165f359251ed82dcd84d2c0ab221671af1d7 (diff)
downloadscummvm-rg350-b6e39dbf79801b5d96ca9292a47825d39f1e3fb4.tar.gz
scummvm-rg350-b6e39dbf79801b5d96ca9292a47825d39f1e3fb4.tar.bz2
scummvm-rg350-b6e39dbf79801b5d96ca9292a47825d39f1e3fb4.zip
XEEN: Some initial work on better sound manager
Diffstat (limited to 'engines/xeen/sound.h')
-rw-r--r--engines/xeen/sound.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/xeen/sound.h b/engines/xeen/sound.h
index 7e7df9caea..b44bff7f30 100644
--- a/engines/xeen/sound.h
+++ b/engines/xeen/sound.h
@@ -29,6 +29,21 @@
namespace Xeen {
+class VOC: public Common::File {
+public:
+ virtual ~VOC();
+
+ /**
+ * Play the given loaded sound
+ */
+ void play();
+
+ /**
+ * Stop playing the sound
+ */
+ void stop();
+};
+
class SoundManager {
private:
XeenEngine *_vm;