mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-17 14:57:27 +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/player.hpp"
|
||||||
#include "structs/temp.hpp"
|
#include "structs/temp.hpp"
|
||||||
|
|
||||||
namespace big::features
|
namespace big
|
||||||
{
|
{
|
||||||
inline Player g_playerId;
|
inline Player g_playerId;
|
||||||
inline Player g_selectedPlayer = -1;
|
inline Player g_selectedPlayer = -1;
|
||||||
inline player g_players[32];
|
inline player g_players[32];
|
||||||
|
|
||||||
// Screen Width & Height
|
|
||||||
inline int x, y;
|
|
||||||
|
|
||||||
// Temporary Variable struct
|
// Temporary Variable struct
|
||||||
inline temp g_temp = temp{};
|
inline temp g_temp = temp{};
|
||||||
|
|
||||||
void run_tick();
|
// Screen Width & Height
|
||||||
void script_func();
|
inline int x, y;
|
||||||
|
|
||||||
|
namespace features
|
||||||
|
{
|
||||||
|
void run_tick();
|
||||||
|
void script_func();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user