Files
tgstation-server/TGCommandLine/ConsoleCommand.cs
T
2017-11-06 12:50:02 -05:00

13 lines
257 B
C#

using TGServiceInterface;
namespace TGCommandLine
{
abstract class ConsoleCommand : Command
{
/// <summary>
/// The <see cref="IInterface"/> currently in use by the <see cref="Program"/>
/// </summary>
public static IInterface Interface;
}
}