19 lines
357 B
C#
19 lines
357 B
C#
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; }
|
|
}
|
|
}
|