aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs_spells.h
diff options
context:
space:
mode:
authorPaul Gilbert2015-03-01 10:41:11 -0500
committerPaul Gilbert2015-03-01 10:41:11 -0500
commitee5b8ed59f1aaa00767ac3805d7ab63dd5a5f5d4 (patch)
treee7ddf9e10125abab536217051708860c6db07d56 /engines/xeen/dialogs_spells.h
parentc6506b567c791c6ef9a80df01f666c2c6d6d4b48 (diff)
downloadscummvm-rg350-ee5b8ed59f1aaa00767ac3805d7ab63dd5a5f5d4.tar.gz
scummvm-rg350-ee5b8ed59f1aaa00767ac3805d7ab63dd5a5f5d4.tar.bz2
scummvm-rg350-ee5b8ed59f1aaa00767ac3805d7ab63dd5a5f5d4.zip
XEEN: Implement remaining spells
Diffstat (limited to 'engines/xeen/dialogs_spells.h')
-rw-r--r--engines/xeen/dialogs_spells.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/engines/xeen/dialogs_spells.h b/engines/xeen/dialogs_spells.h
index 9f4af15636..35b2708f7a 100644
--- a/engines/xeen/dialogs_spells.h
+++ b/engines/xeen/dialogs_spells.h
@@ -146,6 +146,17 @@ public:
static int show(XeenEngine *vm);
};
+class IdentifyMonster : public ButtonContainer {
+private:
+ XeenEngine *_vm;
+
+ IdentifyMonster(XeenEngine *vm) : ButtonContainer(), _vm(vm) {}
+
+ void execute();
+public:
+ static void show(XeenEngine *vm);
+};
+
} // End of namespace Xeen
#endif /* XEEN_DIALOGS_SPELLS_H */