Add server state to ITorchServer

Fixes #101
This commit is contained in:
Westin Miller
2017-10-10 03:54:23 -07:00
parent b67879577d
commit bc1a612a20
2 changed files with 5 additions and 1 deletions

View File

@@ -120,6 +120,11 @@ namespace Torch.API
/// </summary>
public interface ITorchServer : ITorchBase
{
/// <summary>
/// The current <see cref="ServerState"/>
/// </summary>
ServerState State { get; }
/// <summary>
/// Path of the dedicated instance folder.
/// </summary>

View File

@@ -163,7 +163,6 @@
<Compile Include="Managers\DependencyManager.cs" />
<Compile Include="Event\EventList.cs" />
<Compile Include="Event\EventManager.cs" />
<Compile Include="Event\EventShimProgrammableBlock.cs" />
<Compile Include="Event\IEventList.cs" />
<Compile Include="Managers\KeenLogManager.cs" />
<Compile Include="Managers\PatchManager\AssemblyMemory.cs" />