| 9 | import java.io.IOException; |
| 10 | |
| 11 | public class GuiClick extends GuiScreen { |
| 12 | |
| 13 | public static Colors colors = new Colors(new Color(0xff3f3fff), new Color(0xff3f3f3f), new Color(0xfff3f3f3)); |
| 14 | |
| 15 | public GuiClick() { |
| 16 | |
| 17 | } |
| 18 | |
| 19 | @Override |
| 20 | public void drawScreen(int mouseX, int mouseY, float partialTicks) { |
| 21 | super.drawScreen(mouseX, mouseY, partialTicks); |
| 22 | } |
| 23 | |
| 24 | @Override |
| 25 | protected void mouseClicked(int mouseX, int mouseY, int mouseButton) throws IOException { |
| 26 | super.mouseClicked(mouseX, mouseY, mouseButton); |
| 27 | } |
| 28 | |
| 29 | @Override |
| 30 | protected void mouseReleased(int mouseX, int mouseY, int state) { |
| 31 | super.mouseReleased(mouseX, mouseY, state); |
| 32 | } |
| 33 | |
| 34 | @Override |
| 35 | protected void keyTyped(char typedChar, int keyCode) throws IOException { |
| 36 | super.keyTyped(typedChar, keyCode); |
| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public void onGuiClosed() { |
| 41 | Client.moduleManager.getModule(ClickGUI.class).setEnabled(false); |
| 42 | super.onGuiClosed(); |
| 43 | } |
| 44 | |
| 45 | } |
nothing calls this directly
no outgoing calls
no test coverage detected