mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2024-12-22 20:17:24 +08:00
fix(Globals): Moved globals from features to big namespace
This commit is contained in:
parent
a1dc4ccb1c
commit
7a27ad2c64
@ -3,18 +3,21 @@
|
||||
#include "structs/player.hpp"
|
||||
#include "structs/temp.hpp"
|
||||
|
||||
namespace big::features
|
||||
namespace big
|
||||
{
|
||||
inline Player g_playerId;
|
||||
inline Player g_selectedPlayer = -1;
|
||||
inline player g_players[32];
|
||||
|
||||
// Screen Width & Height
|
||||
inline int x, y;
|
||||
|
||||
// Temporary Variable struct
|
||||
inline temp g_temp = temp{};
|
||||
|
||||
void run_tick();
|
||||
void script_func();
|
||||
// Screen Width & Height
|
||||
inline int x, y;
|
||||
|
||||
namespace features
|
||||
{
|
||||
void run_tick();
|
||||
void script_func();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user