mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
17 lines
430 B
C++
17 lines
430 B
C++
#include "WaxPlayerDataEntry.h"
|
|
|
|
FWaxPlayerDataEntry::FWaxPlayerDataEntry() {
|
|
this->PlayerState = NULL;
|
|
this->bPermanentlyWaxed = false;
|
|
this->bPlayerWasLeader = false;
|
|
this->TokenBasedPlacement = 0;
|
|
this->CurrentTokens = 0;
|
|
this->PreviousTokens = 0;
|
|
this->CurrentTeamTokens = 0;
|
|
this->PreviousTeamTokens = 0;
|
|
this->CurrentKills = 0;
|
|
this->PreviousKills = 0;
|
|
this->CurrentLives = 0;
|
|
}
|
|
|