2022-02-28 23:04:56 +01:00
|
|
|
#pragma once
|
|
|
|
#include "gui/components/components.hpp"
|
2022-06-30 00:11:54 +02:00
|
|
|
#include "util/animator.hpp"
|
2022-03-09 00:03:14 +01:00
|
|
|
#include "views/esp/view_esp.hpp"
|
|
|
|
|
2022-02-28 23:04:56 +01:00
|
|
|
|
|
|
|
namespace big
|
|
|
|
{
|
|
|
|
class view
|
|
|
|
{
|
2022-05-04 19:16:40 +02:00
|
|
|
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
|
|
|
|
2022-05-04 19:16:40 +02:00
|
|
|
public:
|
2022-03-02 19:35:20 -05:00
|
|
|
static void active_view();
|
2022-02-28 23:04:56 +01:00
|
|
|
static void debug();
|
2022-05-04 19:16:40 +02:00
|
|
|
static void esp_settings();
|
2022-06-02 12:36:16 +02:00
|
|
|
static void context_menu_settings();
|
2022-05-04 19:16:40 +02:00
|
|
|
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();
|
2022-05-04 19:16:40 +02:00
|
|
|
//static void player_navigation();
|
2022-03-02 00:21:29 +01:00
|
|
|
static void notifications();
|
2022-05-04 19:16:40 +02:00
|
|
|
static void root();
|
2022-03-02 19:35:20 -05:00
|
|
|
static void self();
|
|
|
|
static void session();
|
|
|
|
static void settings();
|
|
|
|
static void spawn();
|
2022-07-10 06:33:14 +08:00
|
|
|
static void pv();
|
2022-07-12 22:42:07 +08:00
|
|
|
static void vehicle_fun();
|
2022-03-02 19:35:20 -05:00
|
|
|
static void spoofing();
|
|
|
|
static void teleport();
|
|
|
|
static void vehicle();
|
2022-06-26 00:14:00 +02:00
|
|
|
static void lsc();
|
2022-03-02 19:35:20 -05:00
|
|
|
static void view_player();
|
2022-05-04 19:16:40 +02:00
|
|
|
static void players();
|
2022-03-02 19:35:20 -05:00
|
|
|
static void weapons();
|
2022-05-22 16:38:28 +02:00
|
|
|
static void context_menu();
|
2022-02-28 23:04:56 +01:00
|
|
|
|
2022-03-02 00:21:29 +01:00
|
|
|
static void always()
|
|
|
|
{
|
2022-03-09 00:03:14 +01:00
|
|
|
esp::draw();
|
2022-05-22 16:38:28 +02:00
|
|
|
context_menu();
|
2022-03-02 00:21:29 +01:00
|
|
|
notifications();
|
|
|
|
}
|
2022-02-28 23:04:56 +01:00
|
|
|
};
|
|
|
|
}
|