super-duper-spoon/Source/ShooterEditor.Target.cs

15 lines
367 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.V2;
ExtraModuleNames.AddRange( new string[] { "Shooter" } );
}
}