mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-17 02:26:19 +00:00
11 lines
243 B
C#
11 lines
243 B
C#
using TUI.Engine.Nodes.Attributes.Orientations;
|
|
using TUI.Engine.Nodes.Attributes.Resizings;
|
|
|
|
namespace TUI.Engine.Nodes.Containers;
|
|
|
|
public interface IContainer : INode,
|
|
IWithOrientation,
|
|
IWithResizing
|
|
{
|
|
public Nodes GetNodes();
|
|
} |