aurora/aurora-sharp-desktop/Aurora/Services/Global.cs
2021-04-12 20:58:44 -04:00

19 lines
325 B
C#

namespace Aurora.Services
{
public enum PartyState
{
Idle,
SelectingHost,
InParty,
Hosting,
Connecting,
}
public class Global
{
public Global()
{
this.State = PartyState.Idle;
}
public PartyState State {get; set;}
}
}