#ifndef SELFMOVE_H #define SELFMOVE_H #include "effects\effect.h" class SelfMove : public Effect { void OperateOnUnitAndCell(Unit* who, Cell* where); void OperateOnCell(Cell* cell); void OperateOnUnit(Unit* unit); }; #endif // SELFMOVE_H