mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
535 B
C++
20 lines
535 B
C++
#include "AthenaSpectatorPlayerListRowData.h"
|
|
|
|
void UAthenaSpectatorPlayerListRowData::SetKills(AFortPlayerStateAthena* PS, int32 InKills) {
|
|
}
|
|
|
|
AFortPlayerStateAthena* UAthenaSpectatorPlayerListRowData::GetPlayerState() {
|
|
return NULL;
|
|
}
|
|
|
|
UAthenaSpectatorPlayerListRowData::UAthenaSpectatorPlayerListRowData() {
|
|
this->Rank = -1;
|
|
this->TeamNumber = -1;
|
|
this->PlayerName = TEXT("PlayerName");
|
|
this->Kills = -1;
|
|
this->IsRecordingPlayer = false;
|
|
this->IsSpectatorTarget = false;
|
|
this->PlayerState = NULL;
|
|
}
|
|
|