[Board] Implement enPassant move handling

This commit is contained in:
2022-12-21 20:03:59 +01:00
parent c52f57293e
commit 4671fec523
2 changed files with 14 additions and 1 deletions

View File

@@ -128,6 +128,7 @@ private:
}
void handlePawnDoubleAdvance(const Move &move, BitBoard bb, const Piece &movedPiece);
void handleEnPassant(const Move &move, const Piece &movedPiece);
};
std::ostream &operator<<(std::ostream &os, const Board &board);