quantum-space-buddies/QSB/ClientServerStateSync/ClientState.cs
2021-09-25 09:47:07 +01:00

16 lines
285 B
C#

namespace QSB.ClientServerStateSync
{
public enum ClientState
{
NotLoaded,
InTitleScreen,
AliveInSolarSystem,
DeadInSolarSystem,
AliveInEye,
WaitingForOthersToDieInSolarSystem,
WaitingForOthersToReadyInSolarSystem,
WatchingLongCredits,
WatchingShortCredits
}
}