13 lines
317 B
C++

#include "ChessPiece.hpp"
#ifndef ChessPiece_Queen_H
#define ChessPiece_Queen_H
class Queen : public ChessPiece {
public:
Queen(ChessPieceColor color, ChessPiecePosition position);
std::set<ChessPiecePosition> GetNextPositions(Chessboard* chessboard, std::set<ChessPiecePosition> ignore = {});
};
#endif