You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[Backout] - CL25586915 [FYI] Dan.Thompson Original CL Desc ----------------------------------------------------------------- Enable the typecast error now that theoretically they are all fixed (this time :( ). #rb none #jira UE-166462 #preflight 646bfa2f656436839e398ad0 [CL 25593278 by dan thompson in ue5-main branch]
43 lines
762 B
C#
43 lines
762 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class TextureEditor : ModuleRules
|
|
{
|
|
public TextureEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"MainFrame",
|
|
"WorkspaceMenuStructure"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Settings",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"InputCore",
|
|
"Engine",
|
|
"RenderCore",
|
|
"RHI",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorFramework",
|
|
"UnrealEd",
|
|
"PropertyEditor",
|
|
"EditorWidgets",
|
|
"MediaAssets",
|
|
"DerivedDataCache",
|
|
"DeveloperToolSettings"
|
|
}
|
|
);
|
|
}
|
|
}
|