mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|