49 lines
837 B
C#
49 lines
837 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MassNavigationEditor : ModuleRules
|
|
{
|
|
public MassNavigationEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"AssetTools",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"PropertyEditor",
|
|
"MassEntity",
|
|
"DetailCustomizations",
|
|
"MassCommon",
|
|
"MassNavigation",
|
|
"MassZoneGraphNavigation",
|
|
"ZoneGraph",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"RenderCore",
|
|
"KismetWidgets",
|
|
"ToolMenus",
|
|
"AppFramework",
|
|
"Projects",
|
|
}
|
|
);
|
|
}
|
|
|
|
}
|
|
}
|