mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 23:17:52 +08:00
22 lines
355 B
C++
22 lines
355 B
C++
![]() |
#include "services/gui/gui_service.hpp"
|
||
|
#include "view_debug.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void debug::main()
|
||
|
{
|
||
|
if (strcmp(g_gui_service->get_selected()->name, "Debug"))
|
||
|
return;
|
||
|
|
||
|
if (ImGui::Begin("Debug"))
|
||
|
{
|
||
|
ImGui::BeginTabBar("debug_tabbar");
|
||
|
misc();
|
||
|
globals();
|
||
|
locals();
|
||
|
script_events();
|
||
|
ImGui::EndTabBar();
|
||
|
}
|
||
|
ImGui::End();
|
||
|
}
|
||
|
}
|