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

30 lines
592 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DataTableEditor : ModuleRules
{
public DataTableEditor(ReadOnlyTargetRules Target) : base(Target)
{
PublicIncludePathModuleNames.Add("LevelEditor");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"ApplicationCore",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"PropertyEditor",
"EditorFramework",
"UnrealEd",
"Json"
}
);
DynamicallyLoadedModuleNames.Add("WorkspaceMenuStructure");
}
}