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

41 lines
1.0 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ClothPainter : ModuleRules
{
public ClothPainter(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorFramework",
"UnrealEd",
"MainFrame",
"PropertyEditor",
"Kismet",
"AssetTools",
"ClassViewer",
"SkeletalMeshEditor",
"AssetRegistry",
"MeshPaint",
"ClothingSystemRuntimeCommon",
"ClothingSystemRuntimeNv",
"ClothingSystemRuntimeInterface",
"ClothingSystemEditorInterface",
"SkeletalMeshEditor",
"AdvancedPreviewScene",
"ToolMenus",
"EditorWidgets",
"ToolWidgets",
}
);
}
}