You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 60bf8bc55bc96f0001c3361b #Jira UETOOL-3674 #b jamie.dale #fyi lauren.barnes [CL 16588954 by brooke hubert in ue5-main branch]
34 lines
697 B
C#
34 lines
697 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AssetPlacementEdMode : ModuleRules
|
|
{
|
|
public AssetPlacementEdMode(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"ContentBrowser",
|
|
"Core",
|
|
"CoreUObject",
|
|
"InputCore",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"EditorFramework",
|
|
"EditorSubsystem",
|
|
"UnrealEd",
|
|
"EditorInteractiveToolsFramework",
|
|
"InteractiveToolsFramework",
|
|
"Foliage",
|
|
"Landscape",
|
|
"TypedElementFramework",
|
|
"TypedElementRuntime",
|
|
"PropertyEditor",
|
|
"EditorWidgets",
|
|
}
|
|
);
|
|
}
|
|
}
|