
* feat(KickFromInterior): improve kick from interior Fixes #968 Fixes #953 Fixes #901 Fixes #899 Fixes #813 Fixes #726 Fixes #723 Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
25 lines
410 B
C++
25 lines
410 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_WINDOW"_T.data()))
|
|
{
|
|
ImGui::BeginTabBar("debug_tabbar");
|
|
misc();
|
|
logs();
|
|
globals();
|
|
locals();
|
|
script_events();
|
|
scripts();
|
|
threads();
|
|
ImGui::EndTabBar();
|
|
}
|
|
ImGui::End();
|
|
}
|
|
} |