diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 14:07:15 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 14:07:15 +0530 |
| commit | 7e021a821b49306eaa8b0688e4b91d2db25d4878 (patch) | |
| tree | 83f2848245236f079fae5a6f790f96101c6f769c /src/search.h | |
| parent | c8d8d1ddf9ff8d7900d41d885cdbf177f40f0cd1 (diff) | |
rook moves
Diffstat (limited to 'src/search.h')
| -rw-r--r-- | src/search.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/search.h b/src/search.h index 7cbec7e..14f876f 100644 --- a/src/search.h +++ b/src/search.h @@ -25,5 +25,8 @@ void add_move(moves_t* moves, square_t from, square_t to); void get_pawn_moves(moves_t* moves, position_t position); void get_knight_moves(moves_t* moves, position_t position); void get_king_moves(moves_t* moves, position_t position); +void get_rook_moves(moves_t* moves, position_t position); +void get_bishop_moves(moves_t* moves, position_t position); +void get_queen_moves(moves_t* moves, position_t position); #endif // !SEARCH_H |
