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

44 lines
885 B
C++

#include "AthenaProfileStatsBase.h"
void UAthenaProfileStatsBase::Setup(const FUniqueNetIdRepl& InUniqueId) {
}
void UAthenaProfileStatsBase::PrevStatSet() {
}
void UAthenaProfileStatsBase::OnProfileLoaded(UFortMcpProfileAthenaStats* ProfileAthenaStats) {
}
int32 UAthenaProfileStatsBase::NumStatSets() const {
return 0;
}
void UAthenaProfileStatsBase::NextStatSet() {
}
void UAthenaProfileStatsBase::NextPlaylist() {
}
FUniqueNetIdRepl UAthenaProfileStatsBase::GetUniqueID() const {
return FUniqueNetIdRepl{};
}
UAthenaSeasonStats* UAthenaProfileStatsBase::GetCurrentStatSet() const {
return NULL;
}
FText UAthenaProfileStatsBase::GetCurrentPlaylistName() const {
return FText::GetEmpty();
}
UAthenaProfileStatsBase::UAthenaProfileStatsBase() {
this->ProfileStatBox = NULL;
this->CurrentViewedStatSet = NULL;
this->CurrentStatView = NULL;
}