This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
YimMenu/BigBaseV2/src/gui/window/dbg/debug_globals.cpp

14 lines
186 B
C++
Raw Normal View History

2021-12-22 21:41:00 +01:00
#include "debug_tabs.hpp"
namespace big
{
void tab_debug::tab_globals()
{
if (ImGui::BeginTabItem("Globals"))
{
ImGui::Text("Coming soon...");
ImGui::EndTabItem();
}
}
}