OptionPanels code has been replaced with OptionGroups and moved into UWT for general use

This commit is contained in:
Michael Becker 2019-07-28 10:26:21 -04:00
parent 57bc94fbca
commit 44e2df5f08

View File

@ -1,18 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace UniversalEditor.UserInterface
{
public interface IOptionPanelImplementation
{
void LoadSettings();
void SaveSettings();
void ResetSettings();
bool IsAvailable { get; }
string[] OptionGroups { get; }
}
}