mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-29 08:00:19 +01:00
Adds IInterface
This commit is contained in:
@@ -18,15 +18,15 @@ namespace TGControlPanel
|
||||
public static IDictionary<string, ControlPanel> InstancesInUse { get; private set; } = new Dictionary<string, ControlPanel>();
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="TGServiceInterface.Interface"/> instance for this <see cref="ControlPanel"/>
|
||||
/// The <see cref="IInterface"/> instance for this <see cref="ControlPanel"/>
|
||||
/// </summary>
|
||||
readonly Interface Interface;
|
||||
readonly IInterface Interface;
|
||||
|
||||
/// <summary>
|
||||
/// Constructs a <see cref="ControlPanel"/>
|
||||
/// </summary>
|
||||
/// <param name="I">The <see cref="TGServiceInterface.Interface"/> for the <see cref="ControlPanel"/></param>
|
||||
public ControlPanel(Interface I)
|
||||
/// <param name="I">The <see cref="IInterface"/> for the <see cref="ControlPanel"/></param>
|
||||
public ControlPanel(IInterface I)
|
||||
{
|
||||
InitializeComponent();
|
||||
Interface = I;
|
||||
|
||||
Reference in New Issue
Block a user