Initial commit

This commit is contained in:
gamer147
2023-08-02 19:47:53 -04:00
commit 285a130a81
33 changed files with 1699 additions and 0 deletions

20
code/Enums/RoundState.cs Normal file
View File

@@ -0,0 +1,20 @@
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
}