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

21 lines
465 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ClothingSystemRuntimeInterface : ModuleRules
{
public ClothingSystemRuntimeInterface(ReadOnlyTargetRules Target) : base(Target)
{
ShortName = "ClothSysRuntimeIntrfc";
SetupModulePhysicsSupport(Target);
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject"
}
);
}
}