You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
(Re-add the correct files for 4859558 and fix unity build error.) #rb david.harvey [FYI] luke.thatcher #ROBOMERGE-OWNER: robert.manuszewski #ROBOMERGE-AUTHOR: anthony.bills #ROBOMERGE-SOURCE: CL 4859806 via CL 4864758 via CL 4864879 #ROBOMERGE-BOT: CORE (Main -> Dev-Core) [CL 4932201 by anthony bills in Dev-Core branch]
12 lines
270 B
C#
12 lines
270 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class FileUtilities : ModuleRules
|
|
{
|
|
public FileUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core"});
|
|
}
|
|
}
|