Horse.h 272 B

12345678910111213141516171819
  1. #ifndef _HORSE_H
  2. #define _HORSE_H
  3. #include "Figure.h"
  4. #include "Position.h"
  5. class Horse: public Figure
  6. {
  7. public:
  8. Horse(Position pos, char color);
  9. virtual vector<Position> get_moves();
  10. virtual Figure* copy();
  11. virtual const char* print();
  12. };
  13. #endif