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

19 lines
342 B
C++
Raw Normal View History

#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();
2020-12-26 16:47:27 +01:00
tabbar::render_tunables();
ImGui::EndTabBar();
}
ImGui::End();
}
}