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;} } }