mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
26 lines
519 B
C++
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;
|
|
}
|
|
|