Files
UnrealEngine/Engine/Source/Runtime/NullInstallBundleManager/NullInstallBundleManager.build.cs
2025-05-18 13:04:45 +08:00

16 lines
322 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class NullInstallBundleManager : ModuleRules
{
public NullInstallBundleManager(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"InstallBundleManager"
}
);
}
}