Files
2026-02-21 16:45:37 +08:00

14 lines
311 B
C#

namespace rail
{
public enum RailSystemState
{
kSystemStateUnknown = 0,
kSystemStatePlatformOnline = 1,
kSystemStatePlatformOffline = 2,
kSystemStatePlatformExit = 3,
kSystemStatePlayerOwnershipExpired = 20,
kSystemStatePlayerOwnershipActivated = 21,
kSystemStatePlayerOwnershipBanned = 22
}
}