chex v0.1.2 Chex
Public API for Chex.
Link to this section Summary
Link to this section Functions
Link to this function
end_game(pid)
End a game process.
Examples
iex> {:ok, pid} = Chex.new_game()
iex> pid|> Chex.end_game()
:ok
Link to this function
engine_move(pid)
Link to this function
move(pid, move)
Link to this function
new_game()
Link to this function
new_game(fen)
Creates a new game.
Examples
iex> {:ok, pid} = Chex.new_game()
iex> pid |> is_pid()
true
Link to this function