Files
2026-04-22 15:51:07 +02:00

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;
}