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

19 lines
647 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/SceneCaptureComponent2D.h"
#include "EPickaxePartLocation.h"
#include "PickaxeIconSceneCaptureComponent.generated.h"
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UPickaxeIconSceneCaptureComponent : public USceneCaptureComponent2D {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool bIsFullView;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
EPickaxePartLocation CameraKey;
UPickaxeIconSceneCaptureComponent();
};