Files
LuckerGame/code/Enums/RoundState.cs
2023-08-02 19:47:53 -04:00

21 lines
385 B
C#

namespace LuckerGame.Enums;
/// <summary>
/// The state of a current round of minigames
/// </summary>
public enum RoundState
{
/// <summary>
/// This round has not yet started
/// </summary>
NotStarted,
/// <summary>
/// This round is counting down to start
/// </summary>
StartCountdown,
/// <summary>
/// This round is currently in progress
/// </summary>
InProgress
}