Files
TmpMenu/BigBaseV2/src/gui/window/window_debug.cpp

19 lines
326 B
C++

#include "gui/window.hpp"
#include "dbg/debug_tabs.hpp"
namespace big
{
void window::debug()
{
if (g->window.debug && ImGui::Begin("Dev"))
{
ImGui::BeginTabBar("dev_tabbar");
tab_debug::_tab_debug();
tab_debug::tab_globals();
tab_debug::tab_script_events();
ImGui::EndTabBar();
ImGui::End();
}
}
}