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

15 lines
236 B
C#
Raw Normal View History

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