Files
UnrealEngine/Engine/Source/Editor/PackagesDialog/PackagesDialog.Build.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
559 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class PackagesDialog : ModuleRules
{
public PackagesDialog(ReadOnlyTargetRules Target) : base(Target)
{
PrivateIncludePathModuleNames.Add("AssetTools");
PrivateDependencyModuleNames.AddRange(
new string[] {
"ApplicationCore",
"Core",
"CoreUObject",
"InputCore",
"Slate",
"SlateCore",
"UnrealEd",
"SourceControl",
"AssetRegistry",
"ToolWidgets",
}
);
DynamicallyLoadedModuleNames.Add("AssetTools");
}
}