DRG-Femboy-Voice/Source/FSD/Private/AfflictionSettings.cpp
2025-04-15 12:39:31 -07:00

17 lines
565 B
C++
Executable file

#include "AfflictionSettings.h"
UAfflictionSettings::UAfflictionSettings() {
this->BurningSound = NULL;
this->EletrocutedSound = NULL;
this->HeavyStaggerMinTime = 1.00f;
this->MediumStaggerMinTime = 0.50f;
this->HeavyStaggerAffliction = NULL;
this->MediumStaggerAffliction = NULL;
this->ShortStaggerAffliction = NULL;
this->EliteAffliction = NULL;
this->BurningParticles.AddDefaulted(5);
this->EletrocutedParticles.AddDefaulted(5);
this->ExplodingParticles.AddDefaulted(5);
this->ExplodingSounds.AddDefaulted(5);
}