Files
FNGameProj/Source/FortniteGame/Private/FortWeaponDurabilityByRarityStats.cpp
2024-01-21 00:41:14 +01:00

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;
}