fix imgui wm hook
This commit is contained in:
17
TestPlugin/TestRenderComponent.cs
Normal file
17
TestPlugin/TestRenderComponent.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user