Files
UnrealEngine/Engine/Plugins/ChaosCloth/Source/ChaosClothEditor/ChaosClothEditor.Build.cs
2025-05-18 13:04:45 +08:00

29 lines
711 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ChaosClothEditor : ModuleRules
{
public ChaosClothEditor(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"ClothingSystemEditorInterface",
"SlateCore",
"Slate",
"Persona",
"ChaosCloth",
"EditorFramework",
"UnrealEd",
"Engine",
"DetailCustomizations",
"CoreUObject",
"InputCore",
}
);
SetupModulePhysicsSupport(Target);
}
}