15 lines
236 B
C#
Raw Normal View History

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