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

31 lines
532 B
C++
Raw Normal View History

2019-03-21 20:18:31 +01:00
#pragma once
#include "common.hpp"
#include "fiber_pool.hpp"
#include "structs/player.hpp"
#include "structs/temp.hpp"
#include "features/notify.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_selectedPlayer = -1;
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 god_mode();
void off_radar();
void no_ragdoll();
}
2019-03-21 20:18:31 +01:00
}