20 lines
463 B
C++
Executable file
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();
|
|
};
|
|
|