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

27 lines
518 B
C#
Raw Normal View History

2021-08-08 18:59:40 +00:00
namespace QSB.ClientServerStateSync
{
public enum ServerState
{
// When in menus
NotLoaded,
// When in any credits
Credits,
// For normal play in SolarSystem
InSolarSystem,
// For normal play in EyeOfTheUniverse
InEye,
// At end of loop, waiting for everyone to be ready to reload the scene
WaitingForAllPlayersToDie,
2021-08-08 18:59:40 +00:00
// At start of loop, waiting for everybody to be ready to start playing
WaitingForAllPlayersToReady,
2021-08-08 18:59:40 +00:00
// When the statue has been activated
InStatueCutscene
}
}