14 lines
215 B
C++
14 lines
215 B
C++
![]() |
#include "player_tabs.hpp"
|
||
|
|
||
|
namespace big
|
||
|
{
|
||
|
void tab_player::tab_info()
|
||
|
{
|
||
|
if (ImGui::BeginTabItem("Info"))
|
||
|
{
|
||
|
ImGui::Checkbox("Spectate", &g.player.spectating);
|
||
|
|
||
|
ImGui::EndTabItem();
|
||
|
}
|
||
|
}
|
||
|
}
|