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; }
/** Has key been typed? */ public boolean typed(KeyEvent e) { for (KeyBindingType kb : types) if (kb.typed(e, null)) return true; return false; }