mirror of
https://github.com/MrOkiDoki/BattleBit-Community-Server-API.git
synced 2025-02-02 14:37:15 -03:00
10 lines
183 B
C#
10 lines
183 B
C#
namespace BattleBitAPI.Common
|
|
{
|
|
public enum GameState : byte
|
|
{
|
|
WaitingForPlayers = 0,
|
|
CountingDown = 1,
|
|
Playing = 2,
|
|
EndingGame = 3
|
|
}
|
|
}
|