15 lines
309 B
C#
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
|