8 lines
126 B
C#
Executable File
8 lines
126 B
C#
Executable File
namespace ChatTwo.Ui.SettingsTabs;
|
|
|
|
internal interface ISettingsTab
|
|
{
|
|
string Name { get; }
|
|
void Draw(bool changed);
|
|
}
|