feat(tour): tournament is almost done

This commit is contained in:
Maieul BOYER 2026-01-11 16:58:39 +01:00 committed by G.C.L. Baptiste
parent f14d618ed5
commit 2e23943578
6 changed files with 299 additions and 146 deletions

View file

@ -34,7 +34,7 @@ export type TourInfo = {
ownerId: string;
state: 'prestart' | 'playing' | 'ended' | 'canceled';
players: { id: string; name: string; score: number }[];
currentGameInfo: GameUpdate | null;
remainingMatches: number | null,
};
export interface ClientToServer {