/MGRImGuiTemplate

MGRImGuiTemplate is a repository template targeted to draw ImGui in game, template is used to not repeat every imgui process over and over again

Primary LanguageC++MIT LicenseMIT

MGRImGuiTemplate

MGRImGuiTemplate is a repository template targeted to draw ImGui in game, template is used to not repeat every imgui process over and over again

What's used?

How to get started?

All is simple, very simple
Here's an example of hello world

void gui::RenderWindow()
{
        ImGui::Begin("Test");
        ImGui::Text("Hello World!");
        ImGui::End();
}

MGR ImGui Template
Visual Studio template to make this kind of mods

to render window, all you need is to write all related code to dllmain in gui::RenderWindow, after plugin::OnStartup The result is
image