Files
@ a1943cb579fc
Branch filter:
Location: menu.hg/Source/CardinalMenu.Target.cs - annotation
a1943cb579fc
602 B
text/x-csharp
fixed online session not destroying session when client loses connection to server, fixed online session not destroying itself when client returns to main menu
67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 da2390039566 da2390039566 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 67f2a87a3323 | // Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class CardinalMenuTarget : TargetRules
{
public CardinalMenuTarget(TargetInfo Target)
{
Type = TargetType.Game;
bUsesSteam = true;
}
//
// TargetRules interface.
//
public override void SetupBinaries(
TargetInfo Target,
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
ref List<string> OutExtraModuleNames
)
{
OutExtraModuleNames.AddRange( new string[] { "CardinalMenu" } );
}
}
|