SwordNGunUE4/SwordNGun/Source/SwordNGunEditor.Target.cs

15 lines
393 B
C#
Raw Permalink 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;
2022-03-31 02:32:14 +00:00
ExtraModuleNames.AddRange( new string[] { "SwordNGunEditor" } );
}
}