Initial commit for new project

This commit is contained in:
2024-12-21 22:22:30 -08:00
commit 34a62829b7
10 changed files with 807 additions and 0 deletions

9
code/MyComponent.cs Normal file
View File

@@ -0,0 +1,9 @@
public sealed class MyComponent : Component
{
[Property] public string StringProperty { get; set; }
protected override void OnUpdate()
{
}
}