selfheal.h 448 B

123456789101112131415161718
  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 "effects\effect.h"
  9. class SelfHeal : public Effect {
  10. void OperateOnCell(Cell* cell);
  11. void OperateOnUnit(Unit* unit);
  12. void OperateOnUnitToCell(Unit* who, Cell* where);
  13. void Execute(Cell* from, Cell* where, Unit* who, Unit* whom, TypeOfTrigger Type);
  14. };
  15. #endif //GAME_CLIENT_SELFHEAL_H