You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-171293 #rb Matt.Kuhlenschmidt #preflight 63dbcb442d4aef3dd1642d7d [CL 23984661 by karen jirak in ue5-main branch]
22 lines
349 B
C#
22 lines
349 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class WidgetRegistration : ModuleRules
|
|
{
|
|
public WidgetRegistration(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"SlateCore",
|
|
"Core",
|
|
"Slate",
|
|
"Engine",
|
|
"ToolMenus"
|
|
});
|
|
|
|
|
|
|
|
}
|
|
} |