mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
16 lines
261 B
C#
16 lines
261 B
C#
namespace QSB.ClientServerStateSync
|
|
{
|
|
public enum ClientState
|
|
{
|
|
NotLoaded,
|
|
InTitleScreen,
|
|
AliveInSolarSystem,
|
|
DeadInSolarSystem,
|
|
AliveInEye,
|
|
WaitingForOthersToDie,
|
|
WaitingForOthersToBeReady,
|
|
WatchingLongCredits,
|
|
WatchingShortCredits
|
|
}
|
|
}
|