You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Thomas.Sarkanen #preflight 637e03952a05dabce9c11f0c [CL 23248743 by jurre debaare in ue5-main branch]
34 lines
850 B
C#
34 lines
850 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AnimationModifiers : ModuleRules
|
|
{
|
|
public AnimationModifiers(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"MainFrame",
|
|
"PropertyEditor",
|
|
"Kismet",
|
|
"AssetTools",
|
|
"ClassViewer",
|
|
"AssetRegistry",
|
|
"AnimationBlueprintLibrary",
|
|
"DeveloperSettings",
|
|
"ContentBrowser",
|
|
"ToolMenus"
|
|
}
|
|
);
|
|
}
|
|
}
|