Files
UnrealEngineUWP/Engine/Source/Runtime/AnimationCore/AnimationCore.Build.cs
halfdan ingvarsson 8da0b15ed9 Remove unused function and nix dependency on Engine.
#jira none
#rb Lina.Halper
#rnx

[CL 13800643 by halfdan ingvarsson in ue5-main branch]
2020-06-30 17:10:13 -04:00

24 lines
435 B
C#

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