Files
yoan stamant e6d36d7569 Remove references to deprecated plugin StructUtils (now part of CoreUObject)
#jira UE-216472
#rb devin.doucette

#changelist validated

[CL 34514179 by yoan stamant in ue5-main branch]
2024-06-19 17:04:50 -04:00

37 lines
600 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class RemoteControlLogic : ModuleRules
{
public RemoteControlLogic(ReadOnlyTargetRules Target) : base(Target)
{
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"AssetRegistry",
"Cbor",
"Engine",
"HTTP",
"RemoteControl",
"Serialization",
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
}
);
}
}
}