MCPcopy Create free account
hub / github.com/ZWareDevelopment/ClientBase / GuiClick

Class GuiClick

src/main/java/dev/zihasz/client/ui/click/GuiClick.java:11–45  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import java.io.IOException;
10
11public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected