chessmcu/Piece.cpp
2025-07-30 21:48:16 -04:00

15 lines
315 B
C++

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