(int mouseX, int mouseY, int button)
| 252 | } |
| 253 | |
| 254 | @Override |
| 255 | public boolean mouseClicked(int mouseX, int mouseY, int button) { |
| 256 | try { |
| 257 | return button == 0 && (clickChatComponent != null ? (Boolean) clickChatComponent.invoke(MinecraftFactory.getVars().getMinecraftScreen(), |
| 258 | getChatComponent(Mouse.getX(), Mouse.getY())) : ((bxf) MinecraftFactory.getVars().getMinecraftScreen()).a(getChatComponent(Mouse.getX(), Mouse.getY()))); |
| 259 | } catch (Exception e) { |
| 260 | throw new RuntimeException(e); |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | @Override |
| 265 | public void keyTyped(int code) { |
nothing calls this directly
no test coverage detected