Files
UnrealEngineUWP/Engine/Source/Editor/LevelInstanceEditor/LevelInstanceEditor.Build.cs
roey borsteinas f4480b560e LevelInstance: Added an actor which allows the user to change the pivot point of the level instance.
#jira none
#rb patrick.enfedaque, jeanfrancois.dube

[CL 15130983 by roey borsteinas in ue5-main branch]
2021-01-18 12:50:54 -04:00

46 lines
978 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelInstanceEditor : ModuleRules
{
public LevelInstanceEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePaths.Add("Editor/LevelInstanceEditor/Private"); // For PCH includes (because they don't work with relative paths, yet)
PrivateIncludePathModuleNames.AddRange(
new string[] {
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"EditorStyle",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"LevelEditor",
"ToolMenus",
"PropertyEditor",
"NewLevelDialog",
"MainFrame",
"ContentBrowser",
"AssetTools",
"ClassViewer",
"MessageLog",
"EditorWidgets"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
}
}