selfhealspell.h 293 B

1234567891011121314
  1. //
  2. // Created by IgorBat on 23.04.2018.
  3. //
  4. #ifndef GAME_CLIENT_SELFHEAL_H
  5. #define GAME_CLIENT_SELFHEAL_H
  6. #include <cassert>
  7. #include "spells\spell.h"
  8. class SelfHealSpell : public Spell {
  9. void CastSpell(Cell* from, Cell* where, Unit* who, Unit* whom);
  10. };
  11. #endif //GAME_CLIENT_SELFHEAL_H