mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-10 07:16:18 +00:00
17 lines
384 B
C#
17 lines
384 B
C#
using TUI.Engine.Attributes;
|
|
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 bool IsRelative { get; }
|
|
|
|
public void SetRelative();
|
|
|
|
public void SetAbsolute();
|
|
|
|
internal Sketch MakeSketch(Size minSize);
|
|
} |