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

[CL 31019676 by jose villarroel in ue5-main branch]
2024-01-30 15:54:28 -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",
}
);
}
}