Initial commit

This commit is contained in:
Stone_Red
2026-06-08 12:30:37 +02:00
commit 2ba87a113d
310 changed files with 4457 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
using System.Drawing;
namespace RemSox.UI.GUI.Rendering;
public class RenderCommand
{
public required int ElementId { get; set; }
public required string ElementType { get; set; }
public required Point Position { get; set; }
public required IReadOnlyDictionary<string, object?> Properties { get; set; }
}