Bishop.h 211 B

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