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.

21 lines
440 B
C++
Raw Normal View History

2021-05-19 14:35:30 +02:00
#pragma once
#include "common.hpp"
namespace big
{
class looped {
public:
static void self_godmode();
2021-05-19 14:35:30 +02:00
static void self_noclip();
static void weapons_cage_gun();
2021-05-20 21:04:03 +02:00
static void weapons_delete_gun();
static void weapons_gravity_gun();
2021-05-20 18:19:01 +02:00
static void weapons_repair_gun();
static void weapons_steal_vehicle_gun();
2021-05-20 21:04:03 +02:00
static void weapons_vehicle_gun();
2021-05-20 18:19:01 +02:00
2021-05-20 23:18:44 +02:00
static void vehicle_horn_boost();
static void vehicle_speedo_meter();
2021-05-19 14:35:30 +02:00
};
}