Ejemplo n.º 1
0
 public boolean typed(JInputManager.EvJinputButtonEvent e) {
   for (KeyBindingType kb : types)
     if (kb.typed(null, e)) // TODO: any need to separate here?
     return true;
   return false;
 }
Ejemplo n.º 2
0
 /** Has key been typed? */
 public boolean typed(KeyEvent e) {
   for (KeyBindingType kb : types) if (kb.typed(e, null)) return true;
   return false;
 }