Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeTestSuite/Private/StateTreeTest.h
mikko mononen 667a0bf417 StateTree: Remove V1
#jira none
#review-17748193
#robomerge 5.0

[CL 17882720 by mikko mononen in ue5-main branch]
2021-10-21 04:08:20 -04:00

16 lines
319 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "StateTreeSchema.h"
#include "StateTreeTest.generated.h"
UCLASS()
class UStateTreeTestSchema : public UStateTreeSchema
{
GENERATED_BODY()
virtual bool IsStructAllowed(const UScriptStruct* InScriptStruct) const override { return true; }
};