mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
542 B
C++
16 lines
542 B
C++
#include "FortAthenaMutator_SurvivalObjectiveData.h"
|
|
|
|
FFortAthenaMutator_SurvivalObjectiveData::FFortAthenaMutator_SurvivalObjectiveData() {
|
|
this->BuildingActorObjectiveClass = NULL;
|
|
this->ActivationSafezoneIndex = 0;
|
|
this->bEndMatchOnDestroy = false;
|
|
this->bSpawnOnPOI = false;
|
|
this->bClearAreaOnSpawn = false;
|
|
this->ClearAreaRadiusOverride = 0.00f;
|
|
this->ClearAreaHalfHeightOverride = 0.00f;
|
|
this->bIsSpecialActor = false;
|
|
this->RandomizedPOICount = 0;
|
|
this->SpawnedBuildingActorObjective = NULL;
|
|
}
|
|
|