summaryrefslogtreecommitdiff
path: root/src/search.h
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-05-26 14:22:55 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-05-26 14:22:55 +0530
commitad32fc54b2869c0bbedcabea6274b0e3732ec893 (patch)
treee4229b03c3f5ee4beea73db3d6614136ff3165e7 /src/search.h
parent7e021a821b49306eaa8b0688e4b91d2db25d4878 (diff)
bishop & queen
Diffstat (limited to 'src/search.h')
-rw-r--r--src/search.h13
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