mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-27 07:26:18 +00:00
9 lines
211 B
C#
9 lines
211 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 pencil, Size maxSize);
|
|
} |