added default values

This commit is contained in:
mrbesen 2022-07-17 00:49:07 +02:00
parent 716a2e4067
commit 6d931be725
Signed by untrusted user: MrBesen
GPG Key ID: 596B2350DCD67504
1 changed files with 6 additions and 6 deletions

View File

@ -54,11 +54,11 @@ public:
static ChampSelectActionType toChampSelectActionType(const std::string& str);
struct TimerInfo {
int64_t adjustedTimeLeftInPhase;
int64_t internalNowInEpochMs;
bool isefinite;
ChampSelectPhase phase;
int64_t totalTimeInPhase;
int64_t adjustedTimeLeftInPhase = 0;
int64_t internalNowInEpochMs = 0;
bool isefinite = false;
ChampSelectPhase phase = ChampSelectPhase::INVALID;
int64_t totalTimeInPhase = 0;
bool valid = false;
@ -91,7 +91,7 @@ public:
};
struct ChampSelectCell {
Position position;
Position position = Position::INVALID;
int32_t cellID = 0;
int32_t championID = 0;
int32_t championPickIntentID = 0;