feat(GUI): Added debug window
This commit is contained in:
18
BigBaseV2/src/gui/window/dbg/debug_debug.cpp
Normal file
18
BigBaseV2/src/gui/window/dbg/debug_debug.cpp
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user