aboutsummaryrefslogtreecommitdiff
path: root/src/moves.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-08-02 17:50:32 +0200
committerAdam <adammegarules1@gmail.com>2026-08-02 17:50:32 +0200
commit14cbced7d8a4116c6418854f1b5b583ae71e82a0 (patch)
treec2bf63bfc728aa939f27c55cd89e0cd2665b7504 /src/moves.hpp
parentf2567c0e5bc9b68b6b3d7769df0b8af57056f1db (diff)
adding bitboards aproah
Diffstat (limited to 'src/moves.hpp')
-rw-r--r--src/moves.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/moves.hpp b/src/moves.hpp
index e48d7f8..3764be4 100644
--- a/src/moves.hpp
+++ b/src/moves.hpp
@@ -12,8 +12,6 @@ void GenerateSlidingMoves(Game *g, int from,
std::vector<Move> &moves, bool GenerateQuietMoves);
void GenerateKingMoves(Game *g, int from, std::vector<Move> &moves,
bool GenerateQuietMoves);
-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);