Files
FNGameProj/Source/FortniteGame/Private/MashPlayerDataEntry.cpp
T
2024-01-21 00:41:14 +01:00

20 lines
442 B
C++

#include "MashPlayerDataEntry.h"
FMashPlayerDataEntry::FMashPlayerDataEntry() {
this->PlayerState = NULL;
this->Scores[0] = 0;
this->Scores[1] = 0;
this->Scores[2] = 0;
this->Scores[3] = 0;
this->Scores[4] = 0;
this->Scores[5] = 0;
this->Scores[6] = 0;
this->Scores[7] = 0;
this->Scores[8] = 0;
this->Scores[9] = 0;
this->Scores[10] = 0;
this->Scores[11] = 0;
this->TotalScore = 0;
}