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

15 lines
315 B
C#
Raw Normal View History

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