mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
396 B
C++
15 lines
396 B
C++
#include "MegaStormCircle.h"
|
|
|
|
FMegaStormCircle::FMegaStormCircle() {
|
|
this->NumCellsFromCenter = 0;
|
|
this->CurrentQuadrant = 0;
|
|
this->RadiusInGridCells = 0;
|
|
this->XAdvanceAccumulation = 0;
|
|
this->YAdvanceAccumulation = 0;
|
|
this->GridRadiusSquaredX4 = 0;
|
|
this->NumPlots = 0;
|
|
this->WorldRadius = 0.00f;
|
|
this->MegaStormState = EMegaStormState::GatheringActorList;
|
|
}
|
|
|