Pawn.h 203 B

12345678910111213141516
  1. #ifndef _PAWN_H
  2. #define _PAWN_H
  3. #include "Figure.h"
  4. #include "Position.h"
  5. class Pawn: public Figure
  6. {
  7. public:
  8. Pawn(Position pos);
  9. virtual std::pair<int, Position*> get_moves();
  10. };
  11. #endif