feat(GUI): Added debug window

This commit is contained in:
Yimura
2021-12-22 21:41:00 +01:00
parent 0f56f836bb
commit 96f04d762b
8 changed files with 136 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#include "debug_tabs.hpp"
#include "util/system.hpp"
namespace big
{
void tab_debug::_tab_debug()
{
if (ImGui::BeginTabItem("Debug"))
{
if (ImGui::Button("Dump entrypoints"))
{
system::dump_entry_points();
}
ImGui::EndTabItem();
}
}
}