12 lines
277 B
C++
Executable file
12 lines
277 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "BehaviorTree/BTDecorator.h"
|
|
#include "BTDecorator_LockRotation.generated.h"
|
|
|
|
UCLASS(Blueprintable)
|
|
class FSD_API UBTDecorator_LockRotation : public UBTDecorator {
|
|
GENERATED_BODY()
|
|
public:
|
|
UBTDecorator_LockRotation();
|
|
};
|
|
|