selfheal.h 307 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 "effect\effect.h"
  9. class selfheal : public Effect {
  10. void OperateOnCell(Cell* cell);
  11. void OperateOnUnit(Unit* unit);
  12. };
  13. #endif //GAME_CLIENT_SELFHEAL_H