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

21 lines
583 B
C++
Executable file

#pragma once
#include "CoreMinimal.h"
#include "BehaviorTree/BTService.h"
#include "BehaviorTree/BehaviorTreeTypes.h"
#include "BTService_CheckPathToTarget.generated.h"
UCLASS(Blueprintable)
class UBTService_CheckPathToTarget : public UBTService {
GENERATED_BODY()
public:
protected:
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FBlackboardKeySelector TargetKey;
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
FBlackboardKeySelector ResultKey;
public:
UBTService_CheckPathToTarget();
};