mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
16 lines
474 B
C++
16 lines
474 B
C++
#include "FortAthenaMutator_SurvivalObjectiveData.h"
|
|
|
|
FFortAthenaMutator_SurvivalObjectiveData::FFortAthenaMutator_SurvivalObjectiveData() {
|
|
BuildingActorObjectiveClass = NULL;
|
|
ActivationSafeZoneIndex = 0;
|
|
bEndMatchOnDestroy = false;
|
|
bSpawnOnPOI = false;
|
|
bClearAreaOnSpawn = false;
|
|
ClearAreaRadiusOverride = 1;
|
|
ClearAreaHalfHeightOverride = 1;
|
|
bIsSpecialActor = false;
|
|
RandomizedPOICount = 0;
|
|
SpawnedBuildingActorObjective = NULL;
|
|
}
|
|
|