feat: initial commit

This commit is contained in:
2025-10-10 20:23:14 +02:00
commit ea4fa7bbe6
500 changed files with 2686 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class UTAD_UIEditorTarget : TargetRules
{
public UTAD_UIEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V5;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5;
ExtraModuleNames.Add("UTAD_UI");
}
}