mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
380 B
C++
14 lines
380 B
C++
#include "MegaStormManager.h"
|
|
|
|
AMegaStormManager::AMegaStormManager() {
|
|
MaxSecondsInMegaStormUpdate = 1;
|
|
NumBuildingActorMegaStormShouldDamagePerFrame = 0;
|
|
SleepTimeAfterDamagingBuildingActors = 1;
|
|
MinDelayTimeBeforeDestruction = 1;
|
|
bFloorRadiusToGridConversion = false;
|
|
GridRadiusCellOffset = 0;
|
|
MegaStormStartTime = 1;
|
|
SleepTimeRemaining = 1;
|
|
}
|
|
|