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