Files
Torch/Torch.API/ServerState.cs

29 lines
588 B
C#

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