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