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