mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-03 04:23:31 +00:00
14 lines
315 B
C++
14 lines
315 B
C++
#include "FortWeaponDurabilityByRarityStats.h"
|
|
|
|
FFortWeaponDurabilityByRarityStats::FFortWeaponDurabilityByRarityStats() {
|
|
this->Common = 0;
|
|
this->Uncommon = 0;
|
|
this->Rare = 0;
|
|
this->Epic = 0;
|
|
this->Legendary = 0;
|
|
this->Mythic = 0;
|
|
this->Transcendent = 0;
|
|
this->Unattainable = 0;
|
|
}
|
|
|