#pragma once #include "CoreMinimal.h" #include "UObject/NoExportTypes.h" #include "RoomFeature.h" #include "Templates/SubclassOf.h" #include "DropPodCalldownLocationFeature.generated.h" class AActor; UCLASS(Blueprintable, EditInlineNew) class UDropPodCalldownLocationFeature : public URoomFeature { GENERATED_BODY() public: protected: UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) FVector Location; UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true)) TSubclassOf CalldownClass; public: UDropPodCalldownLocationFeature(); };