Files
UnrealEngineUWP/Engine/Source/Editor/NewLevelDialog/NewLevelDialog.Build.cs
Matt Kuhlenschmidt aef1e008b4 Fix up use cases of specifying "PrimaryButton" style directly. Replaced instances with SPrimaryButton
#preflight 612d40b9423a8f00013c5b92

[CL 17457077 by Matt Kuhlenschmidt in ue5-main branch]
2021-09-08 08:29:01 -04:00

27 lines
485 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class NewLevelDialog : ModuleRules
{
public NewLevelDialog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"InputCore",
"RenderCore",
"RHI",
"Engine",
"Slate",
"SlateCore",
"EditorStyle",
"EditorFramework",
"UnrealEd",
"ToolWidgets",
}
);
}
}