From b6e39dbf79801b5d96ca9292a47825d39f1e3fb4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 20 Nov 2015 20:11:23 -0500 Subject: XEEN: Some initial work on better sound manager --- engines/xeen/sound.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'engines/xeen/sound.h') 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; -- cgit v1.2.3