新建pad交互端

This commit is contained in:
liuyunhui
2025-09-15 16:33:52 +08:00
parent fdec72f214
commit 1fe5a72ca4
61 changed files with 556 additions and 0 deletions
@@ -0,0 +1,15 @@
// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class InteractiveControlEditorTarget : TargetRules
{
public InteractiveControlEditorTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
DefaultBuildSettings = BuildSettingsVersion.V4;
IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_3;
ExtraModuleNames.Add("InteractiveControl");
}
}