FatJohnsLifter/SeagullGame/Source/SeagullGameEditor.Target.cs

16 lines
415 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class SeagullGameEditorTarget : TargetRules
{
public SeagullGameEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
ExtraModuleNames.Add("SeagullGame");
}
}