8 lines
143 B
C#
8 lines
143 B
C#
|
namespace KamiLib.Interfaces;
|
|||
|
|
|||
|
public interface ISelectable
|
|||
|
{
|
|||
|
IDrawable Contents { get; }
|
|||
|
void DrawLabel();
|
|||
|
string ID { get; }
|
|||
|
}
|