SwordNGunUE4/SwordNGun/Source/SwordNGun.Target.cs

15 lines
373 B
C#
Raw Normal View History

// 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" } );
}
}