You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
62 lines
1.4 KiB
C#
62 lines
1.4 KiB
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MeshPaint : ModuleRules
|
|
{
|
|
public MeshPaint(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"AssetTools"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"AppFramework",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DesktopPlatform",
|
|
"Engine",
|
|
"InputCore",
|
|
"RenderCore",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"UnrealEd",
|
|
"MeshDescription",
|
|
"SourceControl",
|
|
"ViewportInteraction",
|
|
"VREditor",
|
|
"PropertyEditor",
|
|
"MainFrame",
|
|
}
|
|
);
|
|
|
|
CircularlyReferencedDependentModules.AddRange(
|
|
new string[]
|
|
{
|
|
"ViewportInteraction",
|
|
"VREditor"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AssetTools",
|
|
"LevelEditor"
|
|
});
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"AssetTools"
|
|
}
|
|
);
|
|
}
|
|
}
|