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