You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira none #preflight 6418f7d83f3d31c94ac66da7 #rb ryan.gerleve [CL 24732060 by Brian Bekich in ue5-main branch]
25 lines
503 B
C#
25 lines
503 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class NullNetworkReplayStreaming : ModuleRules
|
|
{
|
|
public NullNetworkReplayStreaming( ReadOnlyTargetRules Target ) : base(Target)
|
|
{
|
|
ShortName = "NullReplayStreaming";
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Engine",
|
|
"NetworkReplayStreaming",
|
|
"Json",
|
|
}
|
|
);
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|
|
}
|