16 lines
404 B
C++
Executable file
16 lines
404 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "BehaviorTree/BTDecorator.h"
|
|
#include "IRandRange.h"
|
|
#include "BTDecorator_VariableLoop.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class UBTDecorator_VariableLoop : public UBTDecorator {
|
|
GENERATED_BODY()
|
|
public:
|
|
UPROPERTY(BlueprintReadWrite, EditAnywhere, meta=(AllowPrivateAccess=true))
|
|
FIRandRange NumLoops;
|
|
|
|
UBTDecorator_VariableLoop();
|
|
};
|
|
|