This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-16 13:19:20 +01:00

25 lines
539 B
C++

#include "gui/window.hpp"
#include "gui/tab_bar.hpp"
namespace big
{
void window::render_main_window()
{
if (ImGui::Begin("Yimura's Mod Menu"))
{
ImGui::BeginTabBar("tabbar");
tabbar::render_self();
tabbar::render_weapons();
tabbar::render_tunables();
tabbar::render_teleport();
tabbar::render_vehicle();
tabbar::render_world();
tabbar::render_online();
tabbar::render_misc();
tabbar::render_spawn();
tabbar::render_settings();
ImGui::EndTabBar();
}
ImGui::End();
}
}