mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
12 lines
439 B
C++
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"));
|
|
}
|
|
|