19 lines
325 B
C#
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;}
|
||
|
}
|
||
|
}
|