com.alicizax.unity.ui.exten.../Runtime/UXComponent/Hotkey/IHotkeyTrigger.cs

15 lines
309 B
C#

#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