CurrencyAlertClassic/KamiLib/Interfaces/ISelectable.cs

8 lines
143 B
C#

namespace KamiLib.Interfaces;
public interface ISelectable
{
IDrawable Contents { get; }
void DrawLabel();
string ID { get; }
}