something something

This commit is contained in:
2026-01-09 11:57:24 +05:00
parent 175fe61e5c
commit 346779060e
5 changed files with 34 additions and 13 deletions

View File

@@ -14,6 +14,14 @@ public class ExampleComponent : Component
Console.WriteLine($"C# deltaTime {deltaTime} object id {Owner.Id}");
ImGui.Begin("C# WINDOW");
ImGui.Text("Hello from ExampleComponent!");
if (ImGui.Button("create GameObject"))
{
GameObject.Create();
}
if (ImGui.Button("GC Collect"))
{
GC.Collect();
}
ImGui.End();
}
}