10 lines
205 B
C#
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);
|
|
}
|
|
} |