Files
UnrealEngineUWP/Engine/Source/Editor/CurveTableEditor/CurveTableEditor.Build.cs
Jamie Dale b44bca0ef0 Curve Table improvements
UETOOL-281 - Improve data table workflows

Added support for exporting to CSV and JSON
Added support for importing from JSON (as well as the existing CSV support)
Ported over the new data table editor look-and-feel
Curve table editor now refreshes if the curve table it's editing is re-imported

[CL 2514354 by Jamie Dale in Main branch]
2015-04-16 11:46:07 -04:00

27 lines
509 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CurveTableEditor : ModuleRules
{
public CurveTableEditor(TargetInfo Target)
{
PublicIncludePathModuleNames.Add("LevelEditor");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"UnrealEd"
}
);
DynamicallyLoadedModuleNames.Add("WorkspaceMenuStructure");
}
}