added max players

This commit is contained in:
lila 2026-04-16 19:52:08 +02:00
parent 4d1ebe2450
commit 93cf14857f

View file

@ -16,3 +16,5 @@ export type DifficultyLevel = (typeof DIFFICULTY_LEVELS)[number];
export const LOBBY_STATUSES = ["waiting", "in_progress", "finished"] as const;
export type LobbyStatus = (typeof LOBBY_STATUSES)[number];
export const MAX_LOBBY_PLAYERS = 4;