mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
12 lines
353 B
C++
12 lines
353 B
C++
#include "StormShieldRadiusGrowthData.h"
|
|
|
|
FStormShieldRadiusGrowthData::FStormShieldRadiusGrowthData() {
|
|
this->TargetRadius = 0.00f;
|
|
this->StartingRadius = 0.00f;
|
|
this->GrowthRate = 0.00f;
|
|
this->SafeAreaStartRadiusChangeTime = 0.00f;
|
|
this->SafeAreaFinishRadiusChangeTime = 0.00f;
|
|
this->State = EMissionStormShieldState::IDLE;
|
|
}
|
|
|