Files
UnrealEngineUWP/Engine/Source/Editor/DistCurveEditor/DistCurveEditor.Build.cs
joe kirchoff 4eb0d7b810 Remove unnecessary private include path
#rnx
#jira UE-177808

[CL 24351077 by joe kirchoff in ue5-main branch]
2023-02-21 17:19:34 -05:00

34 lines
615 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DistCurveEditor : ModuleRules
{
public DistCurveEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("UnrealEd");
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"LevelEditor",
"EditorFramework",
"UnrealEd"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"PropertyEditor"
}
);
}
}