You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-69926 #rb trivial #ROBOMERGE-OWNER: ryan.vance #ROBOMERGE-AUTHOR: justin.marcus #ROBOMERGE-SOURCE: CL 4970841 in //UE4/Main/... #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 5032183 by justin marcus in Dev-VR branch]
15 lines
305 B
C#
15 lines
305 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",
|
|
}
|
|
);
|
|
}
|
|
} |