()
| 834 | } |
| 835 | |
| 836 | @Override |
| 837 | public void mouseButton(long window, int button, int pressed, int mods) { |
| 838 | if (window == Window.this.window) { |
| 839 | MouseState next = mouseState.withButton(button, pressed != 0, mods); |
| 840 | fireMouseTransition(mouseState, next); |
| 841 | mouseState = next; |
no outgoing calls
no test coverage detected