Files
tgstation-server/TGS.CommandLine/ConsoleCommand.cs
T

13 lines
266 B
C#

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