mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-23 09:02:38 +08:00
19 lines
263 B
C++
19 lines
263 B
C++
#pragma once
|
|
|
|
namespace big
|
|
{
|
|
struct game_time
|
|
{
|
|
int hour = 0;
|
|
int minutes = 0;
|
|
};
|
|
|
|
struct temp
|
|
{
|
|
int spoofed_rank = 0;
|
|
game_time time = game_time{};
|
|
int wanted_level = 0;
|
|
int teleport_location = 0;
|
|
int weather_type = 0;
|
|
};
|
|
} |