mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
442 B
C++
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;
|
|
}
|
|
|