diff options
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; } |
