From 63fa6656749d1cdb6a54a001950048a9660f0d73 Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Tue, 24 Feb 2026 22:49:43 +0530 Subject: pawn forward movement works? --- src/main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 297ef20..6c05aa2 100644 --- a/src/main.c +++ b/src/main.c @@ -1,7 +1,11 @@ #include #include "bitboard.h" +#include "search.h" int main() { + moves_t moves = moves_init(); + position_t position = position_starting(); + get_pawn_moves(&moves, position); printf("Hello World\n"); return 0; } -- cgit v1.2.3