15 lines
420 B
C++
Executable file
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();
|
|
};
|
|
|