/* * File: Piece.cpp * Author: amr * * Created on July 30, 2025, 9:21 PM */ #include "Piece.hpp" std::vector> King::getLegalMoves(int x, int y, const Board& board) const { std::vector> moveList; // calculate legal moves somehow return moveList; }