Reorganize project structure

This commit is contained in:
Stone_Red
2026-06-19 00:56:46 +02:00
parent 6f58eefb66
commit 95d88f1a8d
84 changed files with 267 additions and 186 deletions
@@ -0,0 +1,16 @@
using RemSox.Kernel.UI.GUI.Windows;
namespace RemSox.Kernel.UI.GUI.Layout;
public static class LayoutExtensions
{
public static StackLayout CreateStackLayout(this Window window, int x, int y, int spacing = 0, StackOrientation orientation = StackOrientation.Vertical)
{
return new StackLayout(window, x, y, spacing, orientation);
}
public static GridLayout CreateGridLayout(this Window window, int x, int y, int[] colWidths, int[] rowHeights, int spacing = 0)
{
return new GridLayout(window, x, y, colWidths, rowHeights, spacing);
}
}