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