(int keyCode)
| 1162 | |
| 1163 | //also allow handling of keyUp but don't require it |
| 1164 | public boolean keyUp(int keyCode) { |
| 1165 | return false; |
| 1166 | } |
| 1167 | |
| 1168 | public static boolean isCtrlKeyDown() { |
| 1169 | return Gdx.input.isKeyPressed(Keys.CONTROL_LEFT) || Gdx.input.isKeyPressed(Keys.CONTROL_RIGHT); |
no outgoing calls
no test coverage detected