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