aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mohawk/console.h')
-rw-r--r--engines/mohawk/console.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/engines/mohawk/console.h b/engines/mohawk/console.h
index 41949c3d06..f199856cab 100644
--- a/engines/mohawk/console.h
+++ b/engines/mohawk/console.h
@@ -33,6 +33,7 @@ namespace Mohawk {
class MohawkEngine_Myst;
class MohawkEngine_Riven;
class MohawkEngine_LivingBooks;
+class MohawkEngine_CSTime;
class MystConsole : public GUI::Debugger {
public:
@@ -99,6 +100,20 @@ private:
bool Cmd_ChangePage(int argc, const char **argv);
};
+class CSTimeConsole : public GUI::Debugger {
+public:
+ CSTimeConsole(MohawkEngine_CSTime *vm);
+ virtual ~CSTimeConsole(void);
+
+private:
+ MohawkEngine_CSTime *_vm;
+
+ bool Cmd_PlaySound(int argc, const char **argv);
+ bool Cmd_StopSound(int argc, const char **argv);
+ bool Cmd_DrawImage(int argc, const char **argv);
+ bool Cmd_DrawSubimage(int argc, const char **argv);
+};
+
} // End of namespace Mohawk
#endif