123456789101112131415161718 |
- #ifndef _PAWN_H
- #define _PAWN_H
- #include "Figure.h"
- #include "Position.h"
- class Pawn: public Figure
- {
- public:
- Pawn(Position pos, char color);
- virtual std::pair<int, Position*> get_moves();
- virtual const char* print();
- };
- #endif
|