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.
YimMenu/BigBaseV2/src/features.hpp

53 lines
1.0 KiB
C++
Raw Normal View History

2019-03-21 20:18:31 +01:00
#pragma once
#include "common.hpp"
#include "fiber_pool.hpp"
#include "structs/lists.hpp"
#include "structs/player.hpp"
#include "structs/temp.hpp"
#include "features/functions.hpp"
#include "features/notify.hpp"
2021-01-10 16:19:40 +01:00
#include "features/rid_joiner.hpp"
#include "features/stats.hpp"
#include "features/teleport.hpp"
2019-03-21 20:18:31 +01:00
namespace big
2019-03-21 20:18:31 +01:00
{
inline Player g_playerId;
inline Player g_selectedPlayerId;
inline player g_currentPlayer;
inline player g_selectedPlayer;
inline player g_players[32];
// Temporary Variable struct
inline temp g_temp = temp{};
// Screen Width & Height
inline int x, y;
namespace features
{
void run_tick();
void script_func();
void disable_phone();
void god_mode();
2021-01-10 16:19:40 +01:00
void join_message();
void never_wanted();
void no_bike_fall();
void no_idle_kick();
void no_ragdoll();
void off_radar();
void population_modifiers();
void reveal_players();
void spectate_player();
void speedo_meter();
void spoof_rank();
void sticky_tyres();
void super_sprint();
void update_screen_sizes();
void update_player_structs();
}
2019-03-21 20:18:31 +01:00
}