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.
YimMenu/BigBaseV2/src/gui/main_window.cpp

24 lines
488 B
C++

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