aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-04-07 16:29:43 -0400
committerPaul Gilbert2018-04-07 16:30:04 -0400
commita42ca33a1cd43e804018d88d5c272859ddecb878 (patch)
treef4cee84a2587cbb8d782dfc17e4c2ba13e441fde /engines/xeen/debugger.h
parentdb1b7b0e1f128ab866d1a08b4eb16c54851b217a (diff)
downloadscummvm-rg350-a42ca33a1cd43e804018d88d5c272859ddecb878.tar.gz
scummvm-rg350-a42ca33a1cd43e804018d88d5c272859ddecb878.tar.bz2
scummvm-rg350-a42ca33a1cd43e804018d88d5c272859ddecb878.zip
XEEN: Add 'strength' debugger command
Diffstat (limited to 'engines/xeen/debugger.h')
-rw-r--r--engines/xeen/debugger.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/xeen/debugger.h b/engines/xeen/debugger.h
index c459dc1bfa..48eb8f35f6 100644
--- a/engines/xeen/debugger.h
+++ b/engines/xeen/debugger.h
@@ -76,12 +76,18 @@ private:
bool cmdInvincible(int argc, const char **argv);
/**
+ * Flags whether to make the party super-strength attacks
+ */
+ bool cmdSuperStrength(int argc, const char **argv);
+
+ /**
* Flags whether to make the party invincible
*/
bool cmdIntangible(int argc, const char **argv);
public:
bool _invincible;
bool _intangible;
+ bool _superStrength;
public:
Debugger(XeenEngine *vm);