(List<IKeybinding> keybindings)
| 356 | } |
| 357 | |
| 358 | @Override |
| 359 | public void registerKeybindings(List<IKeybinding> keybindings) { |
| 360 | bal[] currentKeybindings = getGameSettings().as; |
| 361 | bal[] customKeybindings = new bal[keybindings.size()]; |
| 362 | for (int i = 0; i < keybindings.size(); i++) { |
| 363 | customKeybindings[i] = (bal) keybindings.get(i); |
| 364 | } |
| 365 | getGameSettings().as = Utils.concat(currentKeybindings, customKeybindings); |
| 366 | |
| 367 | getGameSettings().a(); |
| 368 | } |
| 369 | |
| 370 | @Override |
| 371 | public void playSound(String sound, float pitch) { |
nothing calls this directly
no test coverage detected