mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 15:17:23 +08:00
27 lines
436 B
C++
27 lines
436 B
C++
#include "view_debug.hpp"
|
|
|
|
#include "services/gui/gui_service.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void debug::main()
|
|
{
|
|
if (strcmp(g_gui_service->get_selected()->name, "GUI_TAB_DEBUG"))
|
|
return;
|
|
|
|
if (ImGui::Begin("DEBUG_WINDOW"_T.data()))
|
|
{
|
|
ImGui::BeginTabBar("debug_tabbar");
|
|
misc();
|
|
logs();
|
|
globals();
|
|
locals();
|
|
script_events();
|
|
scripts();
|
|
threads();
|
|
animations();
|
|
ImGui::EndTabBar();
|
|
}
|
|
ImGui::End();
|
|
}
|
|
} |