mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-09-02 12:13:25 +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;
|
|
}
|
|
|