You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Adding helper class to monitor bundle + prereq status as a single %. #tests iOS Client #rb none [CODEREVIEW] [at]Justin.Marcus,[at]Daniel.Lamb #ROBOMERGE-SOURCE: CL 7238071 via CL7238129via CL7247123#ROBOMERGE-BOT: (v367-6836689) [CL 7247172 by thomas ross in Main branch]
23 lines
456 B
C#
23 lines
456 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class InstallBundleManager : ModuleRules
|
|
{
|
|
public InstallBundleManager(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivatePCHHeaderFile = "Private/InstallBundleManagerPrivatePCH.h";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Projects",
|
|
"ApplicationCore",
|
|
}
|
|
);
|
|
}
|
|
}
|