Files
Torch/Torch.API/IServerControls.cs
2016-12-17 01:59:03 -08:00

10 lines
205 B
C#

using System.Windows.Controls;
namespace Torch.API
{
public interface IServerControls
{
bool AddGUITab(string name, UserControl control);
bool RemoveGUITab(string name);
}
}