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

15 lines
420 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/Decorators/BTDecorator_BlackboardBase.h"
#include "BTDecorator_AttackInRange.generated.h"
UCLASS(Blueprintable)
class UBTDecorator_AttackInRange : public UBTDecorator_BlackboardBase {
GENERATED_BODY()
public:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FName AttackName;
UBTDecorator_AttackInRange();
};