You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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",
|
||
|
|
});
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|