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.

16 lines
224 B
C++
Raw Normal View History

#include "tabs.hpp"
#include "imgui.h"
namespace big
{
void tab_main::tab_self()
{
if (ImGui::BeginTabItem("Self"))
{
ImGui::Text("Yeet");
//ImGui::Checkbox("No Clip", nullptr);
ImGui::EndTabItem();
}
}
}