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 20ef0ba..3b84afe 100644
--- a/src/moves.hpp
+++ b/src/moves.hpp
@@ -14,5 +14,6 @@ void GenerateKingMoves(Game *g, int from, std::vector<Move> &moves);
void GenerateKnightMoves(Game *g, int from, std::vector<Move> &moves);
void GeneratePawnMoves(Game *g, int from, std::vector<Move> &moves);
bool IsSquareAttacked(Game *g, Position square, bool byWhite);
+GameState GetNewGameState(Game *g);
#endif /* SRC_MOVES_H_ */