Files
UnrealEngine/Templates/TP_TopDown/Source/TP_TopDownEditor.Target.cs
2025-05-18 13:04:45 +08:00

16 lines
412 B
C#

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