quantum-space-buddies/QSB/ClientServerStateSync/ClientState.cs

14 lines
235 B
C#
Raw Normal View History

namespace QSB.ClientServerStateSync
2021-08-08 18:57:58 +00:00
{
public enum ClientState
{
NotLoaded,
InTitleScreen,
AliveInSolarSystem,
DeadInSolarSystem,
AliveInEye,
WaitingForOthersToBeReady,
WatchingLongCredits,
WatchingShortCredits
}
}