feat: Update routing and websocket configuration for game state management

This commit is contained in:
2025-12-11 10:24:51 +01:00
parent 4463144d1b
commit 76258b3ca8
22 changed files with 173 additions and 151 deletions

View File

@@ -16,7 +16,7 @@ type Player = {
type PlayerQueue = {
currentPlayer: Player | null
players: Player[]
queue: Player[]
}
type PodiumPlayer = {
@@ -34,7 +34,7 @@ type Round = {
}
type Trick = {
cards: Map<Player, Card>
cards: { [key: string]: Card} | null
firstCard: Card | null
winner: Player | null
}