// // Created by IgorBat on 23.04.2018. // #pragma once #include #include "effects\selfheal.h" #include "units\unit.h" #include void SelfHeal::OperateOnCell(Cell* cell){ throw std :: string("CAN'T TOUCH THIS") } void SelfHeal::OperateOnUnit(Unit* unit){ unit.setHealthPoints(unit.getHealthPoints() + count_); //check_on_is_it_max }