Refactors, Introduce GameManager, Lobby work

This commit is contained in:
2024-12-23 03:15:16 -08:00
parent 299752bd75
commit 9e2fdafa48
9 changed files with 144 additions and 47 deletions

View File

@@ -0,0 +1,9 @@
namespace LuckerParty;
/// <summary>
/// Contains configuration for a Round, usually created by the host in a Lobby.
/// </summary>
public class RoundConfiguration
{
public uint NumberOfMinigames { get; set; }
}