Files
Torch/PistonAPI/IServerControls.cs

10 lines
205 B
C#

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