aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/debugger.h
diff options
context:
space:
mode:
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);