From 9b1665430fd0379db92000740c7a70045baa1746 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 27 Jul 2026 09:45:58 +0200 Subject: lot of changes --- src/moves.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/moves.hpp') diff --git a/src/moves.hpp b/src/moves.hpp index ae26e29..a957d3a 100644 --- a/src/moves.hpp +++ b/src/moves.hpp @@ -5,11 +5,13 @@ #include std::vector GetLegalMoves(Board *b); +std::vector GetPseudoLegalMoves(Board *b); Position IndexToPosition(int i); void GenerateSlidingMoves(Board *b, int from, const std::array &directions, std::vector &moves); void GenerateKingMoves(Board *b, int from, std::vector &moves); +void GenerateKningtMoves(Board *b, int from, std::vector &moves); void GeneratePawnMoves(Board *b, int from, std::vector &moves); #endif /* SRC_MOVES_H_ */ -- cgit v1.2.3