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

@@ -1,4 +1,5 @@
using NLog;
using CringePlugins.Render;
using NLog;
using VRage.Plugins;
namespace TestPlugin;
@@ -14,6 +15,8 @@ public class Plugin : IPlugin
public void Init(object gameInstance)
{
Log.Info("Test Plugin init");
RenderHandler.Current.RegisterComponent(new TestRenderComponent());
}
public void Update()