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/tab_bar.hpp
2021-01-16 13:19:20 +01:00

30 lines
655 B
C++

#pragma once
#include "common.hpp"
#include "imgui.h"
#include "features.hpp"
#include "settings.h"
#include "natives.hpp"
#include "script.hpp"
#include "fiber_pool.hpp"
namespace big
{
class tabbar
{
public:
// Order in the order that they are rendered/sorted in the UI
static void render_self();
static void render_weapons();
static void render_tunables();
static void render_teleport();
static void render_vehicle();
static void render_world();
static void render_online();
static void render_misc();
static void render_spawn();
static void render_settings();
static void player_info();
};
}