mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
37 lines
923 B
C++
37 lines
923 B
C++
#include "AthenaStatsScreenBase.h"
|
|
|
|
|
|
void UAthenaStatsScreenBase::SetDisplayName(FText InDisplayName) {
|
|
}
|
|
|
|
void UAthenaStatsScreenBase::SetAccountIdToQueryFromString(const FString& InAccountId) {
|
|
}
|
|
|
|
void UAthenaStatsScreenBase::OnTabSelected(FName TabName) {
|
|
}
|
|
|
|
|
|
|
|
void UAthenaStatsScreenBase::DisplayQueriedUserPlatformProfile() {
|
|
}
|
|
|
|
UAthenaStatsScreenBase::UAthenaStatsScreenBase() {
|
|
this->StatsTabList = NULL;
|
|
this->WinsTile = NULL;
|
|
this->SecondTierTile = NULL;
|
|
this->ThirdTierTile = NULL;
|
|
this->KillsRow = NULL;
|
|
this->MatchesPlayedRow = NULL;
|
|
this->LastUpdatedTime = NULL;
|
|
this->PlayerName = NULL;
|
|
this->SeasonContainer = NULL;
|
|
this->AccountContainer = NULL;
|
|
this->MainStatsContainer = NULL;
|
|
this->PlatformButton = NULL;
|
|
this->Image_PlatformIcon = NULL;
|
|
this->LTM_Disclaimer = NULL;
|
|
this->bWasLastQuerySuccessful = true;
|
|
this->QueriedSocialUser = NULL;
|
|
}
|
|
|