mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
467 B
C++
27 lines
467 B
C++
#include "AthenaMatchStats.h"
|
|
|
|
FAthenaMatchStats::FAthenaMatchStats() {
|
|
Stats[0] = 0;
|
|
Stats[1] = 0;
|
|
Stats[2] = 0;
|
|
Stats[3] = 0;
|
|
Stats[4] = 0;
|
|
Stats[5] = 0;
|
|
Stats[6] = 0;
|
|
Stats[7] = 0;
|
|
Stats[8] = 0;
|
|
Stats[9] = 0;
|
|
Stats[10] = 0;
|
|
Stats[11] = 0;
|
|
Stats[12] = 0;
|
|
Stats[13] = 0;
|
|
Stats[14] = 0;
|
|
Stats[15] = 0;
|
|
Stats[16] = 0;
|
|
Stats[17] = 0;
|
|
Stats[18] = 0;
|
|
Stats[19] = 0;
|
|
bIsValid = false;
|
|
}
|
|
|