mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
20 lines
490 B
C++
20 lines
490 B
C++
#include "AthenaSpectatorPlayerListRowData.h"
|
|
|
|
void UAthenaSpectatorPlayerListRowData::SetKills(AFortPlayerStateAthena* PS, int32 InKills) {
|
|
}
|
|
|
|
AFortPlayerStateAthena* UAthenaSpectatorPlayerListRowData::GetPlayerState() {
|
|
return NULL;
|
|
}
|
|
|
|
UAthenaSpectatorPlayerListRowData::UAthenaSpectatorPlayerListRowData() {
|
|
Rank = 0;
|
|
TeamNumber = 0;
|
|
PlayerName = TEXT("PlayerName");
|
|
Kills = 0;
|
|
IsRecordingPlayer = false;
|
|
IsSpectatorTarget = false;
|
|
PlayerState = NULL;
|
|
}
|
|
|