com.alicizax.unity.ui.exten.../Runtime/UXComponent/Hotkey/IHotkeyTrigger.cs
陈思海 551423f09d 大优化
大优化 懒得写了 重构了分离了 UXButton UXToggle UXSelectable UXGroup
2025-12-19 20:26:22 +08:00

15 lines
315 B
C#

#if INPUTSYSTEM_SUPPORT
using UnityEngine.InputSystem;
namespace UnityEngine.UI
{
public interface IHotkeyTrigger
{
internal InputActionReference HotkeyAction { get; set; }
internal EHotkeyPressType HotkeyPressType { get; set; }
internal void HotkeyActionTrigger();
}
}
#endif