mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
26 lines
654 B
C++
26 lines
654 B
C++
#include "AthenaMatchStatView.h"
|
|
|
|
TArray<UAthenaWeaponStatView*> UAthenaMatchStatView::GetWeaponViews() const {
|
|
return TArray<UAthenaWeaponStatView*>();
|
|
}
|
|
|
|
UAthenaWeaponStatView* UAthenaMatchStatView::GetWeaponViewHighestStat(const FGameplayTag& InStat) const {
|
|
return NULL;
|
|
}
|
|
|
|
TArray<UAthenaWeaponStatView*> UAthenaMatchStatView::GetSortedWeaponViews(const FGameplayTag& InStat) const {
|
|
return TArray<UAthenaWeaponStatView*>();
|
|
}
|
|
|
|
FString UAthenaMatchStatView::GetMatchID() const {
|
|
return TEXT("");
|
|
}
|
|
|
|
FDateTime UAthenaMatchStatView::GetMatchEndTime() const {
|
|
return FDateTime{};
|
|
}
|
|
|
|
UAthenaMatchStatView::UAthenaMatchStatView() {
|
|
}
|
|
|