SwordNGunUE4/SwordNGun/Source/SwordNGun.Target.cs
Kevin Poretti c4c12d0251 Try to fix Perforce line-ending bullshit
[git-p4: depot-paths = "//depot/main/": change = 33]
2021-03-20 23:27:09 -05:00

15 lines
373 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" } );
}
}