mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-22 16:52:30 +08:00
19 lines
326 B
C++
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();
|
|
}
|
|
}
|
|
} |