mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
527 B
C++
17 lines
527 B
C++
#include "FortPlayerStartCreative.h"
|
|
#include "FortCreativeVolumeLinkComponent.h"
|
|
|
|
bool AFortPlayerStartCreative::IsClaimedByPlayer(FUniqueNetIdRepl UniqueId) const {
|
|
return false;
|
|
}
|
|
|
|
AFortPlayerStartCreative::AFortPlayerStartCreative() : APlayerStart(FObjectInitializer::Get()) {
|
|
PortalIndex = 0;
|
|
ApplicableTeam = 1;
|
|
bUseAsIslandStart = false;
|
|
PriorityGroup = 0;
|
|
bIsEnabled = true;
|
|
CreativeLinkComponent = CreateDefaultSubobject<UFortCreativeVolumeLinkComponent>(TEXT("CreativeLinkComponent"));
|
|
}
|
|
|