sidescroller/Source/sidescrollerEditor.Target.cs

16 lines
419 B
C#
Raw Permalink Normal View History

2023-02-09 13:40:12 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class sidescrollerEditorTarget : TargetRules
{
public sidescrollerEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V2;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_1;
ExtraModuleNames.Add("sidescroller");
}
}