You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb richard.malo #preflight 6408fe0c6d06d9a1426bfc81 #rnx [CL 24575456 by patrick enfedaque in ue5-main branch]
47 lines
904 B
C#
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[] {
|
|
}
|
|
);
|
|
}
|
|
}
|