Files
UnrealEngine/Engine/Source/Developer/AITestSuite/Classes/BehaviorTree/TestBTStopAction.h
2025-05-18 13:04:45 +08:00

19 lines
380 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "TestBTStopAction.generated.h"
class UBehaviorTreeComponent;
UENUM()
enum class EBTTestStopAction : uint8
{
StopTree,
UnInitialize,
Cleanup,
Restart_ForceReevaluateRootNode,
Restart_Complete,
StartTree,
};
void DoBTStopAction(UBehaviorTreeComponent& OwnerComp, const EBTTestStopAction StopAction);