Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

27 lines (23 loc) · 1.02 KB

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
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
image