2025-12-19 20:26:22 +08:00
|
|
|
#if INPUTSYSTEM_SUPPORT
|
|
|
|
|
using UnityEngine.InputSystem;
|
|
|
|
|
|
|
|
|
|
namespace UnityEngine.UI
|
|
|
|
|
{
|
|
|
|
|
public interface IHotkeyTrigger
|
|
|
|
|
{
|
2026-03-19 19:50:32 +08:00
|
|
|
public InputActionReference HotkeyAction { get; }
|
2025-12-19 20:26:22 +08:00
|
|
|
internal EHotkeyPressType HotkeyPressType { get; set; }
|
|
|
|
|
internal void HotkeyActionTrigger();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|