15 lines
359 B
C#
15 lines
359 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class SwordNGunTarget : TargetRules
|
|
{
|
|
public SwordNGunTarget( TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
ExtraModuleNames.AddRange( new string[] { "SwordNGun" } );
|
|
}
|
|
}
|