mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
16 lines
384 B
C++
16 lines
384 B
C++
#include "AthenaReplayBrowserMatchStats.h"
|
|
|
|
FAthenaReplayBrowserMatchStats::FAthenaReplayBrowserMatchStats() {
|
|
this->Hits = 0;
|
|
this->Headshots = 0;
|
|
this->Revives = 0;
|
|
this->DamageTaken = 0;
|
|
this->DamagePlayers = 0;
|
|
this->DamageStructures = 0;
|
|
this->ChestsOpened = 0;
|
|
this->Distance = 0;
|
|
this->MaterialsGathered = 0;
|
|
this->MaterialsUsed = 0;
|
|
}
|
|
|