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