Refactor, fix chat scroll, rework automatic update system, remove manual install method, add documentation

This commit is contained in:
John Gross
2017-07-06 14:44:29 -07:00
parent 79fe6a08ab
commit 7373dd37a6
31 changed files with 594 additions and 322 deletions

View File

@@ -6,11 +6,29 @@ using System.Threading.Tasks;
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
}
}