diff options
Diffstat (limited to 'src/moves.hpp')
| -rw-r--r-- | src/moves.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
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 <vector> std::vector<Move> GetLegalMoves(Board *b); +std::vector<Move> GetPseudoLegalMoves(Board *b); Position IndexToPosition(int i); void GenerateSlidingMoves(Board *b, int from, const std::array<int, 4> &directions, std::vector<Move> &moves); void GenerateKingMoves(Board *b, int from, std::vector<Move> &moves); +void GenerateKningtMoves(Board *b, int from, std::vector<Move> &moves); void GeneratePawnMoves(Board *b, int from, std::vector<Move> &moves); #endif /* SRC_MOVES_H_ */ |
