You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
40 lines
742 B
C#
40 lines
742 B
C#
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using UnrealBuildTool;
|
||
|
|
|
||
|
|
public class StructViewer : ModuleRules
|
||
|
|
{
|
||
|
|
public StructViewer(ReadOnlyTargetRules Target) : base(Target)
|
||
|
|
{
|
||
|
|
PrivateIncludePathModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"AssetRegistry",
|
||
|
|
"AssetTools",
|
||
|
|
"EditorWidgets",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PrivateDependencyModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"Core",
|
||
|
|
"CoreUObject",
|
||
|
|
"Engine",
|
||
|
|
"InputCore",
|
||
|
|
"Slate",
|
||
|
|
"SlateCore",
|
||
|
|
"EditorStyle",
|
||
|
|
"UnrealEd",
|
||
|
|
"Settings",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
DynamicallyLoadedModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"AssetRegistry",
|
||
|
|
"AssetTools",
|
||
|
|
"EditorWidgets",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|