Horse.h 244 B

123456789101112131415161718
  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 const char* print();
  11. };
  12. #endif