SwordNGunUE4/SwordNGun/Source/SwordNGunEditor.Target.cs

15 lines
387 B
C#
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class SwordNGunEditorTarget : TargetRules
{
public SwordNGunEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "SwordNGun" } );
}
}