protected override void onKeyUp(Glfw.Key key, int scanCode, Modifier modifiers) { if (crow.ProcessKeyUp((Key)key)) { return; } }
void Keyboard_KeyUp(object sender, OpenTK.Input.KeyboardKeyEventArgs otk_e) { if (!CrowInterface.ProcessKeyUp((int)otk_e.Key)) { KeyboardKeyUp.Raise(this, otk_e); } }
public virtual bool ProcessKeyUp(int Key) { return(CrowInterface.ProcessKeyUp(Key)); }