Files
FNGameProj/Source/FortniteGame/Private/FortPlayerStartCreative.cpp
T
2024-06-07 01:17:09 +02:00

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"));
}