mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
13 lines
391 B
C++
13 lines
391 B
C++
#include "FortMissionPlacementActorItem.h"
|
|
|
|
FFortMissionPlacementActorItem::FFortMissionPlacementActorItem() {
|
|
this->PlacementQuery = NULL;
|
|
this->NumLocationsToFind = 0;
|
|
this->bSpawnActorAutomatically = false;
|
|
this->bShouldReserveLocations = false;
|
|
this->bSnapToGrid = false;
|
|
this->bAdjustPlacementForFloors = false;
|
|
this->bDontCreateSpawnRiftsNearby = false;
|
|
}
|
|
|