8 lines
134 B
C#
8 lines
134 B
C#
|
namespace KamiLib.Interfaces;
|
|||
|
|
|||
|
public interface ITabItem
|
|||
|
{
|
|||
|
string TabName { get; }
|
|||
|
bool Enabled { get; }
|
|||
|
void Draw();
|
|||
|
}
|