edaxGetBoard method

Board edaxGetBoard()

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