diff options
Diffstat (limited to 'engines/xeen/spells.h')
-rw-r--r-- | engines/xeen/spells.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/xeen/spells.h b/engines/xeen/spells.h index 15389be599..cffb302c51 100644 --- a/engines/xeen/spells.h +++ b/engines/xeen/spells.h @@ -29,6 +29,7 @@ namespace Xeen { class XeenEngine; +class Character; #define MAX_SPELLS_PER_CLASS 40 @@ -158,6 +159,10 @@ public: int calcSpellPoints(int spellId, int expenseFactor) const; void doSpell(int spellId); + + void castSpell(int spellId); + + int subSpellCost(Character &c, int spellId); }; } // End of namespace Xeen |