mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
27 lines
505 B
C#
27 lines
505 B
C#
|
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
|
|||
|
WaitingForDeath,
|
|||
|
|
|||
|
// At start of loop, waiting for everybody to be ready to start playing
|
|||
|
AwaitingPlayConfirmation,
|
|||
|
|
|||
|
// When the statue has been activated
|
|||
|
InStatueCutscene
|
|||
|
}
|
|||
|
}
|