fix(Temp): Fixed temporary game_time struct where time would be an invalid prop

This commit is contained in:
Yimura 2020-12-26 17:34:00 +01:00
parent d537004f46
commit 6afc080d50
No known key found for this signature in database
GPG Key ID: 54EFAD29393A6E78

View File

@ -1,15 +1,17 @@
#pragma once #pragma once
namespace big namespace big
{
struct temp
{ {
struct game_time struct game_time
{ {
int hour = 0; int hour = 0;
int minutes = 0; int minutes = 0;
}; };
struct temp
{
int spoofed_rank = 0; int spoofed_rank = 0;
game_time time = game_time{};
int wanted_level = 0; int wanted_level = 0;
}; };
} }