Files
UnrealEngineUWP/Engine/Source/Editor/LevelInstanceEditor/LevelInstanceEditor.Build.cs
patrick enfedaque d76798dcec LevelInstance: Blueprint Filter editing support
#rb richard.malo
#preflight 6408fe0c6d06d9a1426bfc81
#rnx

[CL 24575456 by patrick enfedaque in ue5-main branch]
2023-03-09 09:45:52 -05:00

47 lines
904 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class LevelInstanceEditor : ModuleRules
{
public LevelInstanceEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"LevelEditor",
"ToolMenus",
"PropertyEditor",
"NewLevelDialog",
"MainFrame",
"ContentBrowser",
"AssetTools",
"ClassViewer",
"MessageLog",
"EditorWidgets",
"DeveloperSettings",
"SceneOutliner",
"WorldPartitionEditor",
"Kismet"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
}
);
}
}