quantum-space-buddies/QSB/ClientServerStateSync/ClientState.cs
2022-01-11 20:08:38 -08:00

15 lines
236 B
C#

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