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/player/player_info.cpp

14 lines
215 B
C++
Raw Normal View History

2021-07-23 23:02:46 +02:00
#include "player_tabs.hpp"
namespace big
{
void tab_player::tab_info()
{
if (ImGui::BeginTabItem("Info"))
{
ImGui::Checkbox("Spectate", &g.player.spectating);
ImGui::EndTabItem();
}
}
}