mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
605 B
C++
27 lines
605 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() {
|
|
bHasMatchStats = false;
|
|
bHasTeamStats = false;
|
|
bHasRewards = false;
|
|
}
|
|
|