TmpMenu/BigBaseV2/src/gui/window/main/tab_settings.cpp

20 lines
315 B
C++
Raw Normal View History

//#include "api/api.hpp"
#include "fiber_pool.hpp"
#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();
}
}
}