Merge branch 'master' of https://github.com/tgstation/tgstation-server-tools into RemoteBranchForTestmerges

This commit is contained in:
Cyberboss
2017-11-06 13:01:28 -05:00
13 changed files with 159 additions and 68 deletions
+4 -4
View File
@@ -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;