From 44e2df5f08155a6453ba966c9ec464a927784aae Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sun, 28 Jul 2019 10:26:21 -0400 Subject: [PATCH] OptionPanels code has been replaced with OptionGroups and moved into UWT for general use --- .../IOptionPanelImplementation.cs | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 CSharp/Libraries/UniversalEditor.UserInterface/IOptionPanelImplementation.cs diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/IOptionPanelImplementation.cs b/CSharp/Libraries/UniversalEditor.UserInterface/IOptionPanelImplementation.cs deleted file mode 100644 index b9e1e3db..00000000 --- a/CSharp/Libraries/UniversalEditor.UserInterface/IOptionPanelImplementation.cs +++ /dev/null @@ -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; } - } -}