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

22 lines
683 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
/**
* Common algorithms and data structures used by MeshUtilities, MeshDescriptionOperations and other mesh-related modules.
* This module must have minimal dependencies to allow it being used by various modules without introducing circular references.
*/
public class MeshUtilitiesCommon : ModuleRules
{
public MeshUtilitiesCommon(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
}
}
}