Files
@ af69f7acbf24
Branch filter:
Location: menu.hg/Source/CardinalMenuServer.Target.cs - annotation
af69f7acbf24
742 B
text/x-csharp
steam controller fix
08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 08828e7b5c9d 396ca8219599 33eeda24b368 08828e7b5c9d | // Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class CardinalMenuServerTarget : TargetRules
{
public CardinalMenuServerTarget(TargetInfo Target)
{
Type = TargetType.Server;
}
//
// TargetRules interface.
//
public override void SetupBinaries(
TargetInfo Target,
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
ref List<string> OutExtraModuleNames
)
{
base.SetupBinaries(Target, ref OutBuildBinaryConfigurations, ref OutExtraModuleNames);
OutExtraModuleNames.Add("CardinalMenu");
}
//Modified for UE4.15 and beyond
}
|