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

16 lines
443 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class TP_SIM_BlankEditorTarget : TargetRules
{
public TP_SIM_BlankEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_7;
ExtraModuleNames.AddRange( new string[] { "TP_SIM_Blank" } );
}
}