You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 4859558 via CL 4864727 [CL 4864783 by anthony bills in Main branch]
12 lines
270 B
C#
12 lines
270 B
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class FileUtilities : ModuleRules
|
|
{
|
|
public FileUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "Core"});
|
|
}
|
|
}
|