xo-imgui: refactor: method names in MinimalImGuiVulkan

This commit is contained in:
Roland Conybeare 2025-11-10 18:19:16 -05:00
commit 53744f1de0
2 changed files with 22 additions and 22 deletions

View file

@ -4,10 +4,10 @@
void MinimalImGuiVulkan::run()
{
this->initWindow();
this->initVulkan();
this->initImGui();
this->mainLoop();
this->init_window();
this->init_vulkan();
this->init_imgui();
this->main_loop();
this->cleanup();
}