20 lines
436 B
C++
20 lines
436 B
C++
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "BehaviorTree/BTDecorator.h"
|
|
#include "BTDHasPatrolRoute.generated.h"
|
|
|
|
/**
|
|
*
|
|
*/
|
|
UCLASS(Blueprintable)
|
|
class NAKATOMI_API UBTDHasPatrolRoute : public UBTDecorator
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
virtual bool CalculateRawConditionValue(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory) const override;
|
|
};
|