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

15 lines
372 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "TargetValidator.h"
#include "WithinAngleValidator.generated.h"
UCLASS(Blueprintable, EditInlineNew)
class UWithinAngleValidator : public UTargetValidator {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float MaxAngle;
UWithinAngleValidator();
};