feat(WindowMain): Added dump entrypoints button
This commit is contained in:
parent
0b5da896f6
commit
68b3289752
@ -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();
|
||||
|
Reference in New Issue
Block a user