mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2024-12-29 12:21:25 +00:00
14 lines
238 B
C#
14 lines
238 B
C#
namespace QSB.ClientServerStateSync
|
|
{
|
|
public enum ClientState
|
|
{
|
|
NotLoaded,
|
|
InTitleScreen,
|
|
AliveInSolarSystem,
|
|
DeadInSolarSystem,
|
|
AliveInEye,
|
|
WaitingForOthersToDieInSolarSystem,
|
|
WaitingForOthersToReadyInSolarSystem
|
|
}
|
|
}
|