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

20 lines
463 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "GenerationItem.h"
#include "Templates/SubclassOf.h"
#include "DropPodCalldownLocationItem.generated.h"
class AActor;
UCLASS(Blueprintable)
class ADropPodCalldownLocationItem : public AGenerationItem {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
TSubclassOf<AActor> CalldownClass;
public:
ADropPodCalldownLocationItem();
};