20 lines
345 B
C#
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
|
|
}
|
|
} |