20 lines
361 B
C#
20 lines
361 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SmartSnapping : ModuleRules
|
|
{
|
|
public SmartSnapping(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Slate",
|
|
"SlateCore",
|
|
"LevelEditor",
|
|
"ViewportSnapping"
|
|
});
|
|
}
|
|
}
|