You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Decouple container concept from IoDispatcher * Decoiuple PackageStore implementation from AsyncLoading2 * Restore ucas unmount fix that got kist when merrging from UE4 * Fix packages being left in the PackageStiore even after unmounting contaiiners #rnx #rb pj.kack, per.larsson #preflight 61520cc52afc2d0001146ce7 [CL 17641845 by CarlMagnus Nordin in ue5-main branch]
14 lines
317 B
C#
14 lines
317 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PakFile : ModuleRules
|
|
{
|
|
public PakFile(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("CoreUObject");
|
|
PublicDependencyModuleNames.Add("RSA");
|
|
}
|
|
}
|