2025-12-19 20:26:22 +08:00
|
|
|
#if INPUTSYSTEM_SUPPORT
|
2026-04-28 20:52:06 +08:00
|
|
|
using AlicizaX.UI.Runtime;
|
2025-12-19 20:26:22 +08:00
|
|
|
using UnityEngine.InputSystem;
|
|
|
|
|
|
|
|
|
|
namespace UnityEngine.UI
|
|
|
|
|
{
|
|
|
|
|
public interface IHotkeyTrigger
|
|
|
|
|
{
|
2026-04-28 20:52:06 +08:00
|
|
|
InputActionReference HotkeyAction { get; }
|
|
|
|
|
EHotkeyPressType HotkeyPressType { get; }
|
|
|
|
|
UIHolderObjectBase HotkeyHolder { get; }
|
|
|
|
|
void HotkeyActionTrigger();
|
2025-12-19 20:26:22 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|