MGRImGuiTemplate is a repository template targeted to draw ImGui in game, template is used to not repeat every imgui process over and over again
- ImGui 1.76(WIP)
- MGR Plugin SDK
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
To install a template you need to go to your documents folder and find Visual Studio year
Move the template zip into the Templates\ProjectTemplates\
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
The result is