Files
FNGameProj/Source/FortniteGame/Private/BagelPlayerDataEntry.cpp
T
2024-06-07 01:17:09 +02:00

26 lines
519 B
C++

#include "BagelPlayerDataEntry.h"
FBagelPlayerDataEntry::FBagelPlayerDataEntry() {
PlayerState = NULL;
Scores[0] = 0;
Scores[1] = 0;
Scores[2] = 0;
Scores[3] = 0;
Scores[4] = 0;
Scores[5] = 0;
Scores[6] = 0;
Scores[7] = 0;
Scores[8] = 0;
Scores[9] = 0;
Scores[10] = 0;
Scores[11] = 0;
Scores[12] = 0;
Scores[13] = 0;
TotalScore = 0;
StreakScoreLevel = 0;
StreakMultiplierCurrentKillCount = 0;
LastAIKillTime = 1;
TotalAIKillCount = 0;
}