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.

23 lines
459 B
C++
Raw Normal View History

2021-05-19 14:35:30 +02:00
#pragma once
#include "common.hpp"
namespace big
{
class backend
{
2021-05-19 14:35:30 +02:00
public:
static void loop();
static void self_loop();
static void weapons_loop();
static void vehicles_loop();
static void turnsignal_loop();
static void rgbrandomizer_loop();
static void misc_loop();
static void remote_loop();
static void noclip_loop();
static void lscustoms_loop();
static void vehiclefly_loop();
static void disable_control_action_loop();
2021-05-19 14:35:30 +02:00
};
}