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