mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-27 23:46:19 +00:00
10 lines
240 B
C#
10 lines
240 B
C#
|
using TUI.Engine.Attributes.Alignments;
|
||
|
using TUI.Engine.Attributes.Paddings;
|
||
|
using TUI.Engine.Nodes;
|
||
|
|
||
|
namespace TUI.Engine.Components;
|
||
|
|
||
|
public interface IComponent : INode, IWithAlignment, IWithPadding
|
||
|
{
|
||
|
internal Sketch MakeSketch();
|
||
|
}
|