Horse.h 207 B

12345678910111213141516
  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);
  9. virtual std::pair<int, Position*> get_moves();
  10. };
  11. #endif