mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-26 06:27:19 +01:00
13 lines
266 B
C#
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;
|
|
}
|
|
}
|