You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb Aaron.Mcleran, Marc.Audy, Ethan.Geller #jira UE-80323 #ROBOMERGE-OWNER: jimmy.smith #ROBOMERGE-AUTHOR: jimmy.smith #ROBOMERGE-SOURCE: CL 9542946 via CL 9542950 #ROBOMERGE-BOT: (v521-9539702) [CL 9543087 by jimmy smith in Main branch]
25 lines
505 B
C#
25 lines
505 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AudioSettingsEditor : ModuleRules
|
|
{
|
|
public AudioSettingsEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"InputCore",
|
|
"Engine",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"PropertyEditor",
|
|
"SharedSettingsWidgets",
|
|
"UnrealEd",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
}
|
|
}
|