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/window/window_main.cpp

19 lines
364 B
C++
Raw Normal View History

#include "gui/window.hpp"
#include "imgui.h"
#include "gui/base_tab.h"
#include "gui/window/main/tabs.hpp"
namespace big
{
void window::main()
{
ImGui::SetNextWindowSize({ 800, 840 }, ImGuiCond_FirstUseEver);
if (ImGui::Begin("Yimura's Mod Menu"))
{
ImGui::BeginTabBar("tabbar");
tab_main::tab_self();
ImGui::EndTabBar();
}
ImGui::End();
}
}