mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
44 lines
885 B
C++
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;
|
|
}
|
|
|