mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-04 02:47:22 +00:00
16 lines
285 B
C#
16 lines
285 B
C#
namespace QSB.ClientServerStateSync
|
|
{
|
|
public enum ClientState
|
|
{
|
|
NotLoaded,
|
|
InTitleScreen,
|
|
AliveInSolarSystem,
|
|
DeadInSolarSystem,
|
|
AliveInEye,
|
|
WaitingForOthersToDieInSolarSystem,
|
|
WaitingForOthersToReadyInSolarSystem,
|
|
WatchingLongCredits,
|
|
WatchingShortCredits
|
|
}
|
|
}
|