Files
FNGameProj/Source/FortniteGame/Private/FortPlayerStartCreative.cpp
2024-01-21 00:41:14 +01:00

12 lines
439 B
C++

#include "FortPlayerStartCreative.h"
#include "FortCreativeVolumeLinkComponent.h"
AFortPlayerStartCreative::AFortPlayerStartCreative() : APlayerStart(FObjectInitializer::Get()) {
this->PortalIndex = -1;
this->ApplicableTeam = 1;
this->bUseAsIslandStart = false;
this->PriorityGroup = 2147483647;
this->CreativeLinkComponent = CreateDefaultSubobject<UFortCreativeVolumeLinkComponent>(TEXT("CreativeLinkComponent"));
}