Files
TG_ARPG/Source/TG_ARPGEditor.Target.cs
2025-07-15 00:36:32 +08:00

16 lines
403 B
C#

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