Files
UnrealEngineUWP/Engine/Source/Editor/ViewportSnapping/ViewportSnapping.Build.cs
2014-03-14 14:13:41 -04:00

33 lines
593 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ViewportSnapping : ModuleRules
{
public ViewportSnapping(TargetInfo Target)
{
PrivateIncludePathModuleNames.Add("UnrealEd");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
// "RenderCore",
// "ShaderCore",
// "RHI",
"Slate",
"UnrealEd"
}
);
// DynamicallyLoadedModuleNames.AddRange(
// new string[] {
// "MainFrame",
// "WorkspaceMenuStructure",
// "PropertyEditor"
// }
// );
}
}