mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-01-08 10:23:34 +08:00
8ad4cf01dd
* Orbital Drone Feature * Fixed PR review comments * chore: cleanup code * UI & globals saving * Fixed typo * Fixed noclip conflict & Applied review suggestions & Added another changeable variable --------- Co-authored-by: Yimura <24669514+Yimura@users.noreply.github.com>
24 lines
488 B
C++
24 lines
488 B
C++
#pragma once
|
|
#include "common.hpp"
|
|
|
|
namespace big
|
|
{
|
|
class backend
|
|
{
|
|
public:
|
|
static void loop();
|
|
static void self_loop();
|
|
static void weapons_loop();
|
|
static void vehicles_loop();
|
|
static void turnsignal_loop();
|
|
static void misc_loop();
|
|
static void remote_loop();
|
|
static void lscustoms_loop();
|
|
static void rainbowpaint_loop();
|
|
static void vehiclefly_loop();
|
|
static void disable_control_action_loop();
|
|
static void world_loop();
|
|
static void orbital_drone();
|
|
};
|
|
}
|