Files
UnrealEngineUWP/Engine/Source/Runtime/Networking/Networking.Build.cs
bradley heath 9283e3783c Enabled compile errors for unsafe floating point and integer casts in the networking modules along with fixes for existing errors.
#jira UE-165096
#rb louisphilippe.seguin ryan.gerleve

[CL 29231550 by bradley heath in ue5-main branch]
2023-10-30 09:34:31 -04:00

20 lines
357 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class Networking : ModuleRules
{
public Networking(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Sockets"
});
UnsafeTypeCastWarningLevel = WarningLevel.Error;
}
}
}