aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/sound.h
diff options
context:
space:
mode:
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;