Files
UnrealEngine/Engine/Source/Editor/LevelInstanceEditor/LevelInstanceEditor.Build.cs
2025-05-18 13:04:45 +08:00

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[] {
}
);
}
}