b34a855a92
Also add window display options.
7 lines
117 B
C#
Executable File
7 lines
117 B
C#
Executable File
namespace ChatTwo.Ui.SettingsTabs;
|
|
|
|
internal interface ISettingsTab {
|
|
string Name { get; }
|
|
void Draw();
|
|
}
|