mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 19:23:19 +00:00
15 lines
339 B
C++
15 lines
339 B
C++
#include "AthenaMatchSetStatView.h"
|
|
|
|
UAthenaSeasonStats* UAthenaMatchSetStatView::GetOwningSeason() {
|
|
return NULL;
|
|
}
|
|
|
|
TArray<UAthenaMatchStatView*> UAthenaMatchSetStatView::GetBestMatchViews() const {
|
|
return TArray<UAthenaMatchStatView*>();
|
|
}
|
|
|
|
UAthenaMatchSetStatView::UAthenaMatchSetStatView() {
|
|
this->OwningSeason = NULL;
|
|
}
|
|
|