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.

54 lines
1.4 KiB
C++
Raw Normal View History

2022-02-28 23:04:56 +01:00
#pragma once
#include "gui/components/components.hpp"
#include "util/animator.hpp"
#include "views/esp/view_esp.hpp"
2022-02-28 23:04:56 +01:00
namespace big
{
class view
{
inline static animator window_animator = animator();
inline static ImGuiWindowFlags window_flags = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoResize | ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoNav;
2022-02-28 23:04:56 +01:00
public:
static void active_view();
2022-02-28 23:04:56 +01:00
static void debug();
static void esp_settings();
static void context_menu_settings();
static void gui_settings();
static void handling_current_profile();
static void handling_my_profiles();
static void handling_saved_profiles();
static void handling_search();
static void notification_settings();
static void protection_settings();
static void heading();
2022-02-28 23:04:56 +01:00
static void mobile();
static void navigation();
//static void player_navigation();
static void notifications();
static void root();
static void self();
static void session();
static void settings();
static void spawn();
static void pv();
static void vehicle_fun();
static void spoofing();
static void teleport();
static void vehicle();
static void lsc();
static void view_player();
static void players();
static void weapons();
static void context_menu();
2022-02-28 23:04:56 +01:00
static void always()
{
esp::draw();
context_menu();
notifications();
}
2022-02-28 23:04:56 +01:00
};
}