You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Rob.Gay #preflight 612659a4ec8296000189e254 #ROBOMERGE-SOURCE: CL 17304970 #ROBOMERGE-BOT: (v861-17282326) [CL 17304985 by phil popp in ue5-main branch]
17 lines
353 B
C#
17 lines
353 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class UELibSampleRate : ModuleRules
|
|
{
|
|
public UELibSampleRate(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core"
|
|
}
|
|
);
|
|
}
|
|
}
|