Compare commits

...

2 Commits

Author SHA1 Message Date
e3971d2ff6 chore: fix presentation
All checks were successful
continuous-integration/drone/push Build is passing
2024-01-09 15:03:12 +00:00
aff2a496df chore: update presentation
All checks were successful
continuous-integration/drone/push Build is passing
2024-01-09 12:09:25 +00:00

View File

@ -134,11 +134,23 @@ end
## Safety
- If a game state exists, then it was created by a user
- The game state can not divert.
- The game state cannot divert.
## Liveness
- Eventually all users will have the same game state
---
## 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?