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

17 lines
288 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CollectionManager : ModuleRules
{
public CollectionManager(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"SourceControl"
}
);
}
}