edaxGetBoard method
Get the current board.
Implementation
Board edaxGetBoard() {
final dst = calloc<bindings.Board>();
_bindings.edax_get_board(dst);
final board = Board.fromCStruct(dst.ref);
calloc.free(dst);
return board;
}
Get the current board.
Board edaxGetBoard() {
final dst = calloc<bindings.Board>();
_bindings.edax_get_board(dst);
final board = Board.fromCStruct(dst.ref);
calloc.free(dst);
return board;
}