From 60637ce41b3f033561343c5735eb16227ef240cf Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 26 Jul 2026 17:00:49 +0200 Subject: adding king and formating --- 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 d99fc68..2cede49 100644 --- a/src/moves.hpp +++ b/src/moves.hpp @@ -9,5 +9,7 @@ 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 GeneratePawnMoves(board *b, int from, std::vector &moves); #endif /* SRC_MOVES_H_ */ -- cgit v1.2.3