mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-19 03:26:18 +00:00
9 lines
225 B
C#
9 lines
225 B
C#
|
using TUI.Engine.Nodes;
|
||
|
using TUI.Engine.Nodes.Attributes;
|
||
|
|
||
|
namespace TUI.Engine.Rendering;
|
||
|
|
||
|
public interface IDrawable<in TItem> where TItem : INode
|
||
|
{
|
||
|
Size Draw(TItem item, Position sketchPosition, Size allowableSize);
|
||
|
}
|