You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-146238 #rb Simon.Therriault Jeremie.Roy Denys.Dubinin Patrick.Gross 1. Add toolbar to RC preset #jira UE-146239 #rb Simon.Therriault Jeremie.Roy Denys.Dubinin Patrick.Gross 2. Add search bar / filter in RC preset #jira UE-146241 #rb Simon.Therriault Jeremie.Roy Denys.Dubinin Patrick.Gross 3. Add action buttons in RC preset toolbar #jira UE-146243 #rb Simon.Therriault Jeremie.Roy Denys.Dubinin Patrick.Gross #preflight 19433119 [CL 19936720 by Paul Vincent in ue5-main branch]
44 lines
823 B
C#
44 lines
823 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class RemoteControlUI : ModuleRules
|
|
{
|
|
public RemoteControlUI(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"ApplicationCore",
|
|
"AssetRegistry",
|
|
"AssetTools",
|
|
"ClassViewer",
|
|
"Core",
|
|
"CoreUObject",
|
|
"DeveloperSettings",
|
|
"EditorWidgets",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"HotReload",
|
|
"InputCore",
|
|
"MainFrame",
|
|
"MessageLog",
|
|
"Projects",
|
|
"PropertyEditor",
|
|
"RemoteControl",
|
|
"RemoteControlCommon",
|
|
"RemoteControlProtocolWidgets",
|
|
"SceneOutliner",
|
|
"Slate",
|
|
"SlateCore",
|
|
"ToolMenus",
|
|
"ToolWidgets",
|
|
"UnrealEd"
|
|
}
|
|
);
|
|
}
|
|
}
|