22 lines
651 B
C++
Executable file
22 lines
651 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "Components/PrimitiveComponent.h"
|
|
#include "ECaveEntrancePriority.h"
|
|
#include "ECaveEntranceType.h"
|
|
#include "CaveEntranceComponent.generated.h"
|
|
|
|
UCLASS(Blueprintable, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
|
|
class UCaveEntranceComponent : public UPrimitiveComponent {
|
|
GENERATED_BODY()
|
|
public:
|
|
protected:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
ECaveEntranceType Direction;
|
|
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
ECaveEntrancePriority Priority;
|
|
|
|
public:
|
|
UCaveEntranceComponent();
|
|
};
|
|
|