TableturfBattleApp/TableturfBattleServer/GameState.cs
Andrio Celos dcb669490c Multiple-game sets
This allows any number of games to be played in a room.
Each player bar will show the number of games that player has won. If a goal win count is selected in More Options, the set will end when someone reaches that many wins. Otherwise, players can start a new game after the game ends.
2023-08-13 22:20:23 +10:00

12 lines
166 B
C#

namespace TableturfBattleServer;
public enum GameState {
WaitingForPlayers,
ChoosingStage,
ChoosingDeck,
Redraw,
Ongoing,
GameEnded,
SetEnded
}