namespace Torch.API { /// /// Used to indicate the state of the dedicated server. /// public enum ServerState { /// /// The server is not running. /// Stopped, /// /// The server is starting/loading the session. /// Starting, /// /// The server is running. /// Running, /// /// The server encountered an error. /// Error } }