Files
FNGameProj/Source/FortniteUI/Private/AthenaProfileStatContext.cpp
2024-01-21 00:41:14 +01:00

18 lines
509 B
C++

#include "AthenaProfileStatContext.h"
TArray<UAthenaMatchStatView*> UAthenaProfileStatContext::CreateMatchViews(const TArray<FAthenaMatchStats>& InRecentMatches) {
return TArray<UAthenaMatchStatView*>();
}
UAthenaMatchSetStatView* UAthenaProfileStatContext::CreateMatchStatView(UAthenaSeasonStats* StatSet, FName Bucket) {
return NULL;
}
UAthenaMatchStatView* UAthenaProfileStatContext::CreateCurrentMatchStatView() {
return NULL;
}
UAthenaProfileStatContext::UAthenaProfileStatContext() {
}