playMoves now in zig

This commit is contained in:
k
2025-09-26 13:32:22 -04:00
parent ca1e62397c
commit eccd8efdba
2 changed files with 13 additions and 7 deletions

View File

@@ -1,5 +1,5 @@
#ifndef EVAL_H
#define EVAL_H
move *findBest(move* move, size_t size, game* g);
move *findBest(move* move, long long size, game* g);
void makeMove(game *g, move* m);
#endif