chore: update presentation
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andre Henriques 2024-01-09 12:09:25 +00:00
parent 4d1ca919ef
commit aff2a496df

View File

@ -141,4 +141,16 @@ end
---
## Interface
```elixir
receive do
{:start_game, paticipants} -> {:new_game, game, game_state}
{:make_move, game, participant, move} -> {:update_game, game, game_state} or {:game_finished, game}
{:get_game_state, game} -> {:game_state, game, game_state}
end
```
---
#### Questions?