blaster/Source/BlasterEditor.Target.cs

15 lines
367 B
C#
Raw Normal View History

2022-04-27 17:46:42 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class BlasterEditorTarget : TargetRules
{
public BlasterEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "Blaster" } );
}
}