DRG-Femboy-Voice/Source/FSD/Public/DropPodCalldownLocationFeature.h
2025-04-15 12:39:31 -07:00

24 lines
623 B
C++
Executable file

#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<AActor> CalldownClass;
public:
UDropPodCalldownLocationFeature();
};