diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-02-24 22:49:43 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-02-24 22:49:43 +0530 |
| commit | 63fa6656749d1cdb6a54a001950048a9660f0d73 (patch) | |
| tree | 39c7e0586c2ad761d65f56bdfd6c96f6bbfdccb9 /src/main.c | |
| parent | 9cd36deffadc4f5ab83f08c2999407b31354027e (diff) | |
pawn forward movement works?
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1,7 +1,11 @@ #include <stdio.h> #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; } |
