2020-08-11 01:36:57 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2020-08-25 06:31:46 -04:00
|
|
|
public class LevelInstanceEditor : ModuleRules
|
2020-08-11 01:36:57 -04:00
|
|
|
{
|
2020-08-25 06:31:46 -04:00
|
|
|
public LevelInstanceEditor(ReadOnlyTargetRules Target) : base(Target)
|
2020-08-11 01:36:57 -04:00
|
|
|
{
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
2020-08-14 13:24:16 -04:00
|
|
|
"EditorFramework",
|
2020-08-11 01:36:57 -04:00
|
|
|
"UnrealEd",
|
|
|
|
|
"LevelEditor",
|
|
|
|
|
"ToolMenus",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"NewLevelDialog",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
"ContentBrowser",
|
|
|
|
|
"AssetTools",
|
2020-11-16 08:50:22 -04:00
|
|
|
"ClassViewer",
|
2021-01-18 12:50:54 -04:00
|
|
|
"MessageLog",
|
2022-06-13 18:38:57 -04:00
|
|
|
"EditorWidgets",
|
2023-01-24 11:24:47 -05:00
|
|
|
"DeveloperSettings",
|
2023-03-08 12:02:09 -05:00
|
|
|
"SceneOutliner",
|
2023-03-09 09:45:52 -05:00
|
|
|
"WorldPartitionEditor",
|
|
|
|
|
"Kismet"
|
2020-08-11 01:36:57 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|