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

15 lines
460 B
C++

#include "FortPlaceableActorItemDefinition.h"
FName UFortPlaceableActorItemDefinition::GetActorName() const {
return NAME_None;
}
UFortPlaceableActorItemDefinition* UFortPlaceableActorItemDefinition::CreatePlaceableActorItemDefinitionFromActor(FBuildingDuplicationData DuplicationData, FSlateBrush ImageToDisplay) {
return NULL;
}
UFortPlaceableActorItemDefinition::UFortPlaceableActorItemDefinition() {
this->BasePlaceableActorClass = NULL;
}