aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/debugger.h
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-29 21:35:25 -0400
committerPaul Gilbert2018-03-29 21:35:25 -0400
commit60fdd3d5f2918c2b48e8f3143020d0f770f47dea (patch)
treed9424d46c60b088763ea703ce201ffbec5443f8d /engines/xeen/debugger.h
parent09f67c83ceeb34e4560a758e207e053aef0b7f35 (diff)
downloadscummvm-rg350-60fdd3d5f2918c2b48e8f3143020d0f770f47dea.tar.gz
scummvm-rg350-60fdd3d5f2918c2b48e8f3143020d0f770f47dea.tar.bz2
scummvm-rg350-60fdd3d5f2918c2b48e8f3143020d0f770f47dea.zip
XEEN: Added intangible 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 b7e1f1c325..c459dc1bfa 100644
--- a/engines/xeen/debugger.h
+++ b/engines/xeen/debugger.h
@@ -74,8 +74,14 @@ private:
* Flags whether to make the party invincible
*/
bool cmdInvincible(int argc, const char **argv);
+
+ /**
+ * Flags whether to make the party invincible
+ */
+ bool cmdIntangible(int argc, const char **argv);
public:
bool _invincible;
+ bool _intangible;
public:
Debugger(XeenEngine *vm);