mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
428 B
C++
19 lines
428 B
C++
#include "AthenaReplayBrowserRowData.h"
|
|
|
|
FAthenaReplayBrowserRowData::FAthenaReplayBrowserRowData() {
|
|
this->Version = 0;
|
|
this->Size = 0.00f;
|
|
this->Length = 0.00f;
|
|
this->Rank = 0;
|
|
this->NumPlayers = 0;
|
|
this->Kills = 0;
|
|
this->Views = 0;
|
|
this->Assists = 0;
|
|
this->Accuracy = 0;
|
|
this->bIsOld = false;
|
|
this->bIsSaved = false;
|
|
this->bIsCorrupt = false;
|
|
this->bIsFeatured = false;
|
|
}
|
|
|