edaxPlay method

void edaxPlay(
  1. String moves
)

Play moves.

you can pass Lower case or Upper case. f5F6F6g7 is OK.
you can also pass opening name. (e.g. brightwell)
opening names are listed on opening.c.

Implementation

void edaxPlay(final String moves) {
  final arg = moves.toCharPointer();
  _bindings.edax_play(arg);
  calloc.free(arg);
}