mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-03-21 17:34:28 -05:00
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.
12 lines
166 B
C#
12 lines
166 B
C#
namespace TableturfBattleServer;
|
|
|
|
public enum GameState {
|
|
WaitingForPlayers,
|
|
ChoosingStage,
|
|
ChoosingDeck,
|
|
Redraw,
|
|
Ongoing,
|
|
GameEnded,
|
|
SetEnded
|
|
}
|