You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb none #ROBOMERGE-OWNER: michael.lentine #ROBOMERGE-AUTHOR: michael.lentine #ROBOMERGE-SOURCE: CL 9374650 via CL 9374665 #ROBOMERGE-BOT: (v456-9359915) [CL 9385990 by michael lentine in Main branch]
22 lines
558 B
C#
22 lines
558 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ClothingSystemRuntimeInterface : ModuleRules
|
|
{
|
|
public ClothingSystemRuntimeInterface(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
ShortName = "ClothSysRuntimeIntrfc";
|
|
|
|
PrivateIncludePaths.Add("Runtime/ClothingSystemRuntimeInterface/Private");
|
|
SetupModulePhysicsSupport(Target);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
}
|
|
}
|