You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[at]Thomas.Ross [at]Daniel.Lamb #ROBOMERGE-SOURCE: CL 7842003 via CL 7842009 via CL 7842010 via CL 7860819 #ROBOMERGE-BOT: (v389-7813075) [CL 7860867 by justin marcus in Main branch]
16 lines
332 B
C#
16 lines
332 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class NullInstallBundleManager : ModuleRules
|
|
{
|
|
public NullInstallBundleManager(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"InstallBundleManager"
|
|
}
|
|
);
|
|
}
|
|
} |