You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-165096 #rb louisphilippe.seguin ryan.gerleve [CL 29231550 by bradley heath in ue5-main branch]
27 lines
531 B
C#
27 lines
531 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
public class PacketHandler : ModuleRules
|
|
{
|
|
public PacketHandler(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"NetCore",
|
|
"ReliabilityHandlerComponent",
|
|
"Sockets",
|
|
}
|
|
);
|
|
|
|
CircularlyReferencedDependentModules.Add("ReliabilityHandlerComponent");
|
|
|
|
UnsafeTypeCastWarningLevel = WarningLevel.Error;
|
|
}
|
|
}
|