53 lines
1.0 KiB
C#
53 lines
1.0 KiB
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",
|
|
"PropertyEditor",
|
|
"InteractiveToolsFramework",
|
|
"EditorInteractiveToolsFramework",
|
|
"TypedElementFramework",
|
|
"TypedElementRuntime",
|
|
"SceneOutliner"
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
}
|
|
}
|