mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-20 07:48:11 +08:00
18 lines
264 B
C++
18 lines
264 B
C++
![]() |
#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();
|
||
|
}
|
||
|
}
|
||
|
}
|