fix imgui wm hook

This commit is contained in:
zznty
2024-10-24 20:40:34 +07:00
parent 87965b44ee
commit 1eef90335b
6 changed files with 55 additions and 13 deletions

View File

@@ -0,0 +1,17 @@
using CringePlugins.Abstractions;
using ImGuiNET;
namespace TestPlugin;
public class TestRenderComponent : IRenderComponent
{
public void OnFrame()
{
if (ImGui.Begin("Test Window"))
{
ImGui.Button("Test");
ImGui.End();
}
}
}