ChessPiece chessboard[8][8]{}
chessBoard[0][0] = new Rook{};
class ChessBoardT {
void SetPieceAt(CoordinateT position, ChessPieceT piece);
const ChessPieceT & GetPieceAt(CoordinateT position); const;
bool IsEmpty(CoordinateT position);
}