public InputAction(ScriptableKeybind _key, Action _downEvent, Action _event, Action _upEvent) { Keybind = _key; m_keyEvent = _event; m_keyUpEvent = _upEvent; m_keyDownEvent = _downEvent; }
public InputAction(ScriptableKeybind _key, Action _event) : this(_key, null, _event, null) { }
/* * Public Functions. */ public InputAction(ScriptableKeybind _key, Action _downEvent, Action _upEvent) : this(_key, _downEvent, null, _upEvent) { }