Files
brandon schaefer 253cb99625 AutoRTFM-ifi some missing modules
Add missing std lib calls to auto open

#rb Michael Nicolella

[CL 28205907 by brandon schaefer in ue5-main branch]
2023-09-25 17:12:18 -04:00

27 lines
502 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;
bAllowAutoRTFMInstrumentation = true;
SetupGameplayDebuggerSupport(Target);
}
}