You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-155440 * Base implementation of UI for Controllers, Behavior, Actions * Additional changes for UI Conformance to Figma * Further revisions will bring implementation of any UI functionality missing or incomplete in the original prototype. #preflight 6297a7819907cbadba985a17 [CL 20455574 by Denys Dubinin in ue5-main branch]
49 lines
935 B
C#
49 lines
935 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",
|
|
"BlueprintGraph",
|
|
"ClassViewer",
|
|
"Core",
|
|
"CoreUObject",
|
|
"ContentBrowser",
|
|
"DeveloperSettings",
|
|
"EditorWidgets",
|
|
"EditorStyle",
|
|
"Engine",
|
|
"GraphEditor",
|
|
"HotReload",
|
|
"InputCore",
|
|
"MainFrame",
|
|
"MessageLog",
|
|
"Projects",
|
|
"PropertyEditor",
|
|
"RemoteControl",
|
|
"RemoteControlCommon",
|
|
"RemoteControlLogic",
|
|
"RemoteControlProtocolWidgets",
|
|
"SceneOutliner",
|
|
"Slate",
|
|
"SlateCore",
|
|
"StructUtils",
|
|
"ToolMenus",
|
|
"ToolWidgets",
|
|
"UnrealEd"
|
|
}
|
|
);
|
|
}
|
|
}
|