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

18 lines
529 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/Decorators/BTDecorator_BlackboardBase.h"
#include "BTDecorator_InRangeOfTarget.generated.h"
UCLASS(Blueprintable)
class UBTDecorator_InRangeOfTarget : public UBTDecorator_BlackboardBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float MinRange;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
float MaxRange;
UBTDecorator_InRangeOfTarget();
};