TableturfBattleApp/TableturfBattleServer/GameState.cs
2022-10-01 16:00:50 +10:00

9 lines
128 B
C#

namespace TableturfBattleServer;
public enum GameState {
WaitingForPlayers,
Preparing,
Redraw,
Ongoing,
Ended
}