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