コード例 #1
0
 protected override void onKeyUp(Glfw.Key key, int scanCode, Modifier modifiers)
 {
     if (crow.ProcessKeyUp((Key)key))
     {
         return;
     }
 }
コード例 #2
0
 protected override void onKeyDown(Glfw.Key key, int scanCode, Modifier modifiers)
 {
     if (crow.ProcessKeyDown((Key)key))
     {
         return;
     }
     base.onKeyDown(key, scanCode, modifiers);
 }