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

40 lines
684 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SoundClassEditor : ModuleRules
{
public SoundClassEditor(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"AssetRegistry",
"Kismet"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
"Slate",
"EditorStyle",
"UnrealEd",
"GraphEditor"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"MainFrame",
"PropertyEditor",
"SceneOutliner",
"ClassViewer",
"ContentBrowser",
"WorkspaceMenuStructure"
}
);
}
}