using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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 } }