mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
338 B
C++
15 lines
338 B
C++
#include "MegaStormCircle.h"
|
|
|
|
FMegaStormCircle::FMegaStormCircle() {
|
|
NumCellsFromCenter = 0;
|
|
CurrentQuadrant = 0;
|
|
RadiusInGridCells = 0;
|
|
XAdvanceAccumulation = 0;
|
|
YAdvanceAccumulation = 0;
|
|
GridRadiusSquaredX4 = 0;
|
|
NumPlots = 0;
|
|
WorldRadius = 1;
|
|
MegaStormState = EMegaStormState::GatheringActorList;
|
|
}
|
|
|