You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-121470 #rnx #rb trivial #ROBOMERGE-SOURCE: CL 17150503 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v855-17104924) [CL 17150507 by david harvey in ue5-release-engine-test branch]
17 lines
273 B
C#
17 lines
273 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class XmlParser : ModuleRules
|
|
{
|
|
public XmlParser( ReadOnlyTargetRules Target ) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
}
|
|
);
|
|
}
|
|
}
|