Scoreboard/ScoreboardApi/Objects/GameState.cs
2025-01-08 09:39:14 +00:00

20 lines
345 B
C#

namespace ScoreboardApi.Objects
{
public enum GameState
{
WaitingForStart = 1,
FirstHalf = 2,
HalfTime = 3,
SecondHalf = 4,
Finished = 5,
TimeOff = 6
}
public enum HalfType
{
Pre = 1,
First = 2,
Second = 3,
End = 4
}
}