Add container nesting.

This commit is contained in:
2025-06-19 14:50:05 +02:00
parent 806c9cc1d4
commit e499691714
8 changed files with 113 additions and 17 deletions

View File

@@ -15,6 +15,11 @@ public interface IParentableElement
public void AddChild(IElement child);
}
public interface IUpdatableElement
{
void Update();
}
public interface IRenderableElement
{
public bool Visible { get; set; }