You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#preflight 63789b0c170bc34a93a869e5 #rb none [CL 23218413 by henrik karlsson in ue5-main branch]
19 lines
375 B
C#
19 lines
375 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UELibSampleRate : ModuleRules
|
|
{
|
|
public UELibSampleRate(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
bEnforceIWYU = false;
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core"
|
|
}
|
|
);
|
|
}
|
|
}
|