Files
jose villarroel 9fb4842c05 Move PoseSearch/BlendStack out of experimental folder
#rb Samuele.Rigamonti

[CL 31015910 by jose villarroel in 5.4 branch]
2024-01-30 14:25:01 -05:00

21 lines
347 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class BlendStack : ModuleRules
{
public BlendStack(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"AnimationCore",
"AnimGraphRuntime",
}
);
}
}