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

15 lines
309 B
C#
Raw Normal View History

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