diff options
Diffstat (limited to 'engines/lilliput/lilliput.h')
-rw-r--r-- | engines/lilliput/lilliput.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/lilliput/lilliput.h b/engines/lilliput/lilliput.h index 8a3f87c63a..298a367d3d 100644 --- a/engines/lilliput/lilliput.h +++ b/engines/lilliput/lilliput.h @@ -25,6 +25,7 @@ #include "lilliput/console.h" #include "lilliput/script.h" +#include "lilliput/sound.h" #include "common/file.h" #include "engines/engine.h" @@ -55,8 +56,9 @@ enum GameType { }; enum LilliputDebugChannels { - kDebugEngine = 1 << 0, - kDebugScript = 1 << 1 + kDebugEngine = 1 << 0, + kDebugScript = 1 << 1, + kDebugSound = 1 << 2 }; struct LilliputGameDescription; @@ -79,6 +81,7 @@ public: Common::RandomSource *_rnd; LilliputScript *_scriptHandler; + LilliputSound *_soundHandler; Graphics::Surface *_mainSurface; struct18560 _arr18560[4]; |