mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00
25 lines
410 B
C++
25 lines
410 B
C++
![]() |
#include "gui/components/components.hpp"
|
||
|
#include "natives.hpp"
|
||
|
#include "util/system.hpp"
|
||
|
#include "view_debug.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void debug::misc()
|
||
|
{
|
||
|
if (ImGui::BeginTabItem("Misc"))
|
||
|
{
|
||
|
if (components::button("Dump entrypoints"))
|
||
|
{
|
||
|
system::dump_entry_points();
|
||
|
}
|
||
|
|
||
|
components::button("Network Bail", []
|
||
|
{
|
||
|
NETWORK::NETWORK_BAIL(16, 0, 0);
|
||
|
});
|
||
|
|
||
|
ImGui::EndTabItem();
|
||
|
}
|
||
|
}
|
||
|
}
|