mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
27 lines
623 B
C++
27 lines
623 B
C++
#include "AthenaPlayerMatchReport.h"
|
|
|
|
void UAthenaPlayerMatchReport::GetXpRewards(TArray<FAthenaMatchXpReward>& XpRewards) {
|
|
}
|
|
|
|
int32 UAthenaPlayerMatchReport::GetTotalSeasonalXpEarned() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 UAthenaPlayerMatchReport::GetTotalScoreEarned() const {
|
|
return 0;
|
|
}
|
|
|
|
int32 UAthenaPlayerMatchReport::GetTotalBookXpEarned() const {
|
|
return 0;
|
|
}
|
|
|
|
void UAthenaPlayerMatchReport::GetLootRewards(TArray<FAthenaMatchLootReward>& LootRewards) {
|
|
}
|
|
|
|
UAthenaPlayerMatchReport::UAthenaPlayerMatchReport() {
|
|
this->bHasMatchStats = false;
|
|
this->bHasTeamStats = false;
|
|
this->bHasRewards = false;
|
|
}
|
|
|