Add debug rectangle size rendering, auto-resize containers to fit all children.

This commit is contained in:
2025-06-20 18:57:36 +02:00
parent 1b09d80f7a
commit 3154b3fa10
12 changed files with 114 additions and 40 deletions

View File

@@ -33,6 +33,7 @@ public interface IRenderableElement
{
public bool Visible { get; set; }
public void Render(RenderSystem renderer, Style style);
public void DrawSize(RenderSystem renderer);
}
public interface IInputElement