13 lines
222 B
C#
Raw Normal View History

2022-03-02 19:46:33 -08:00
namespace QSB.ClientServerStateSync;
public enum ClientState
2021-08-08 19:57:58 +01:00
{
2022-03-02 19:46:33 -08:00
NotLoaded,
InTitleScreen,
AliveInSolarSystem,
DeadInSolarSystem,
AliveInEye,
WaitingForOthersToBeReady,
WatchingLongCredits,
WatchingShortCredits
}