Files
@ 8b2ed5b452f9
Branch filter:
Location: menu.hg/Source/CardinalMenuServer.Target.cs - annotation
8b2ed5b452f9
855 B
text/x-csharp
work in progress removing main menu plugin, including blueprint video settings
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 396ca8219599 396ca8219599 08828e7b5c9d 08828e7b5c9d 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
[SupportedPlatforms(UnrealPlatformClass.Server)]
public class MyGameServerTarget : TargetRules
{
}
}
|