selfmove.h 254 B

12345678910111213
  1. #ifndef SELFMOVE_H
  2. #define SELFMOVE_H
  3. #include "effects\effect.h"
  4. class SelfMove : public Effect {
  5. void OperateOnUnitAndCell(Unit* who, Cell* where);
  6. void OperateOnCell(Cell* cell);
  7. void OperateOnUnit(Unit* unit);
  8. };
  9. #endif // SELFMOVE_H