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