selfmovespell.h 343 B

12345678910111213
  1. #ifndef SELFMOVESPELL_H
  2. #define SELFMOVESPELL_H
  3. #include "spells\spell.h"
  4. class SelfMoveSpell : public Spell {
  5. public:
  6. SelfMoveSpell(QString param) : Spell(param) {}
  7. void CastSpell(Cell* from, Cell* where, Unit* who, Unit* whom) override;
  8. bool canCastToCell(Cell* destination, Cell* from) override;
  9. };
  10. #endif // SELFMOVESPELL_H