aboutsummaryrefslogtreecommitdiff
path: root/engines/voyeur/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2014-02-02 20:28:24 -0500
committerPaul Gilbert2014-02-02 20:28:24 -0500
commitf88985dc649b81e13490d7f3f949838a9b6680c9 (patch)
treec4af9cb8f0e55f19ad8c1e9dc66e2e8751735750 /engines/voyeur/debugger.h
parentff68d8f89a8d992e51f52549673d4943e0fb998e (diff)
downloadscummvm-rg350-f88985dc649b81e13490d7f3f949838a9b6680c9.tar.gz
scummvm-rg350-f88985dc649b81e13490d7f3f949838a9b6680c9.tar.bz2
scummvm-rg350-f88985dc649b81e13490d7f3f949838a9b6680c9.zip
VOYEUR: Added debugger command to show mouse position
Diffstat (limited to 'engines/voyeur/debugger.h')
-rw-r--r--engines/voyeur/debugger.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/engines/voyeur/debugger.h b/engines/voyeur/debugger.h
index 0391fadffd..43eaa5f474 100644
--- a/engines/voyeur/debugger.h
+++ b/engines/voyeur/debugger.h
@@ -39,9 +39,27 @@ public:
* @default true
*/
bool _isTimeActive;
+
+ /*
+ * Specifies whether to show the current mouse position on the screen
+ */
+ bool _showMousePosition;
protected:
+ /**
+ * Turn time on or off, set the current time period, or the camera delay
+ * within the current time period.
+ */
bool Cmd_Time(int argc, const char **argv);
+ /**
+ * List the active hotspots during the current time period
+ */
+ bool Cmd_Hotspots(int argc, const char **argv);
+
+ /**
+ * Toggle showing the mouse on the screen
+ */
+ bool Cmd_Mouse(int argc, const char **argv);
public:
Debugger();
virtual ~Debugger() {}