selfheal.h 302 B

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