16 lines
441 B
C#
16 lines
441 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class ShooterEditorTarget : TargetRules
|
|
{
|
|
public ShooterEditorTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Editor;
|
|
DefaultBuildSettings = BuildSettingsVersion.Latest;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
ExtraModuleNames.AddRange( new string[] { "Shooter" } );
|
|
}
|
|
}
|