aboutsummaryrefslogtreecommitdiff
path: root/src/moves.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/moves.hpp')
-rw-r--r--src/moves.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/moves.hpp b/src/moves.hpp
index 282cff8..e48d7f8 100644
--- a/src/moves.hpp
+++ b/src/moves.hpp
@@ -16,6 +16,7 @@ void GenerateKnightMoves(Game *b, int from, std::vector<Move> &moves,
bool GenerateQuietMoves);
void GeneratePawnMoves(Game *b, int from, std::vector<Move> &moves,
bool GenerateQuietMoves);
+void GenerateCastlingMoves(int from, Game *g, std::vector<Move> &moves);
bool IsSquareAttacked(Game *g, Position square, bool byWhite);
GameState GetNewGameState(Game *g);