[Story] Add Game Sessions #6
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
🧍♂️ User Story
As a User
I want to create game sessions
So that other users can join it.
📋 Description
Users should be able to create a game session. Those users will become the host of the session.
A game session is identified by an UUID and another shorter ID (6 x Numbers). The last one is non persistent.
The PodGameManager can identify each running game session by it's short ID. Each game session has it's own logic and therefore it's own observer.
Other users can join the game session while it is in the Lobby State & it has less than 7 players.
Make sure that a user can only join one session and only once per session.
The host can, once at least 2 players joined start the round.
The players are then created from the User Session.
🎯 Acceptance Criteria
🧵 Linked Issues