You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
CookOnTheFly, CookOnTheFlyNetServer, PakFile, PakFileUtilities #rb PJ.Kack #jira UE-166274 #preflight 63c06dc3a06ab115ea7daaf2 [CL 23669256 by Francis Hurteau in ue5-main branch]
15 lines
370 B
C#
15 lines
370 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PakFile : ModuleRules
|
|
{
|
|
public PakFile(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Warning;
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("CoreUObject");
|
|
PublicDependencyModuleNames.Add("RSA");
|
|
}
|
|
}
|