diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 14:22:55 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 14:22:55 +0530 |
| commit | ad32fc54b2869c0bbedcabea6274b0e3732ec893 (patch) | |
| tree | e4229b03c3f5ee4beea73db3d6614136ff3165e7 /src/search.h | |
| parent | 7e021a821b49306eaa8b0688e4b91d2db25d4878 (diff) | |
bishop & queen
Diffstat (limited to 'src/search.h')
| -rw-r--r-- | src/search.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/search.h b/src/search.h index 14f876f..5648e99 100644 --- a/src/search.h +++ b/src/search.h @@ -29,4 +29,17 @@ 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); +void __forloop_rook_moves_gen( + moves_t* moves, + bitboard_t friendly_type, + bitboard_t friendly_pieces, + bitboard_t enemy_pieces +); +void __forloop_bishop_moves_gen( + moves_t* moves, + bitboard_t friendly_type, + bitboard_t friendly_pieces, + bitboard_t enemy_pieces +); + #endif // !SEARCH_H |
