You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-166229 #rb simon.therriault #preflight 63404dcad718720d2d95820 #lockdown alejandro.arango [CL 22412723 by jeremie roy in ue5-main branch]
25 lines
589 B
C#
25 lines
589 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class RemoteControlMultiUser : ModuleRules
|
|
{
|
|
public RemoteControlMultiUser(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
});
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"ConcertSyncClient", // Dependancy to register our transaction filters. Needs to enable that plugin. Would be better to have modular feature interface functionality
|
|
"Core",
|
|
"CoreUObject",
|
|
"RemoteControl",
|
|
});
|
|
}
|
|
}
|
|
}
|