PlayersHands class

This commit is contained in:
2025-03-05 18:46:06 +01:00
parent fd78bfa4d0
commit c50127ba1b
5 changed files with 63 additions and 52 deletions

View File

@@ -15,7 +15,7 @@ data class GameState(
val lastColor: Card.Color? = null,
val direction: Direction = Direction.CLOCKWISE,
val readyPlayers: List<Player> = emptyList(),
val deck: Deck = Deck(players.toList()),
val deck: Deck = Deck(players),
val isStarted: Boolean = false,
) {
@Serializable