You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-183272 #jira UE-183273 #preflight 643963a0c947f6523a56e24c #rb louisphilippe.seguin [CL 25048869 by Brian Bekich in ue5-main branch]
25 lines
461 B
C#
25 lines
461 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ReplicationGraph : ModuleRules
|
|
{
|
|
public ReplicationGraph(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"NetCore",
|
|
"Engine",
|
|
"EngineSettings",
|
|
"PerfCounters"
|
|
}
|
|
);
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
|
|
SetupGameplayDebuggerSupport(Target);
|
|
}
|
|
}
|