mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 23:07:26 +08:00
feat(WindowMain): Added dump entrypoints button
This commit is contained in:
parent
6e53708caf
commit
db5d7a91b3
@ -9,6 +9,7 @@ namespace big
|
||||
static void tab_tunables();
|
||||
static void tab_self();
|
||||
static void tab_recovery();
|
||||
static void tab_settings();
|
||||
static void tab_spawn();
|
||||
static void tab_vehicle();
|
||||
static void tab_weapons();
|
||||
|
18
BigBaseV2/src/gui/window/main/tab_settings.cpp
Normal file
18
BigBaseV2/src/gui/window/main/tab_settings.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
#include "main_tabs.hpp"
|
||||
#include "util/system.hpp"
|
||||
|
||||
namespace big
|
||||
{
|
||||
void tab_main::tab_settings()
|
||||
{
|
||||
if (ImGui::BeginTabItem("Settings"))
|
||||
{
|
||||
if (ImGui::Button("Dump entrypoints"))
|
||||
{
|
||||
system::dump_entry_points();
|
||||
}
|
||||
|
||||
ImGui::EndTabItem();
|
||||
}
|
||||
}
|
||||
}
|
@ -17,6 +17,7 @@ namespace big
|
||||
tab_main::tab_vehicle();
|
||||
tab_main::tab_weapons();
|
||||
tab_main::tab_recovery();
|
||||
tab_main::tab_settings();
|
||||
ImGui::EndTabBar();
|
||||
|
||||
ImGui::End();
|
||||
|
Loading…
x
Reference in New Issue
Block a user