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

17 lines
498 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "Components/StaticMeshComponent.h"
#include "FirstPersonStaticMeshComponent.generated.h"
UCLASS(Blueprintable, EditInlineNew, ClassGroup=Custom, meta=(BlueprintSpawnableComponent))
class UFirstPersonStaticMeshComponent : public UStaticMeshComponent {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
bool EnabledFPFOV;
public:
UFirstPersonStaticMeshComponent();
};