Update CommandLine to use the new IServerInterface

This commit is contained in:
Cyberboss
2017-12-08 13:08:48 -05:00
parent 50a78b3193
commit e58f09eef4
16 changed files with 111 additions and 151 deletions
+6 -2
View File
@@ -5,8 +5,12 @@ namespace TGS.CommandLine
abstract class ConsoleCommand : Command
{
/// <summary>
/// The <see cref="IServerInterface"/> currently in use by the <see cref="Program"/>
/// The <see cref="IServer"/> currently in use by the <see cref="Program"/>
/// </summary>
public static IServerInterface Interface;
public static IServer Server;
/// <summary>
/// The <see cref="IInstance"/> currently in use by the <see cref="Program"/>
/// </summary>
public static IInstance Instance;
}
}