Files
@ 95e28e6f8211
Branch filter:
Location: menu.hg/Source/CardinalMenu.Target.cs - annotation
95e28e6f8211
602 B
text/x-csharp
changed full screen, added player state
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" } );
}
}
|