diff options
| author | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-04-28 18:33:19 +0100 |
|---|---|---|
| committer | nextdaydelivery <79922345+nxtdaydelivery@users.noreply.github.com> | 2022-04-28 18:33:19 +0100 |
| commit | 9c028b9e55f3968ec3651c7063c0ffd81b027596 (patch) | |
| tree | 9d8d1d2a8afca7ccf2d006946c2d2b0eb8e08e76 /src/main/java/io/polyfrost/oneconfig/utils | |
| parent | d99504188ba1866043cd7f652df8b66c24ea3052 (diff) | |
| download | OneConfig-9c028b9e55f3968ec3651c7063c0ffd81b027596.tar.gz OneConfig-9c028b9e55f3968ec3651c7063c0ffd81b027596.tar.bz2 OneConfig-9c028b9e55f3968ec3651c7063c0ffd81b027596.zip | |
finish for today so no conflicts
Diffstat (limited to 'src/main/java/io/polyfrost/oneconfig/utils')
| -rw-r--r-- | src/main/java/io/polyfrost/oneconfig/utils/InputUtils.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/io/polyfrost/oneconfig/utils/InputUtils.java b/src/main/java/io/polyfrost/oneconfig/utils/InputUtils.java index 1ce1a30..e030c29 100644 --- a/src/main/java/io/polyfrost/oneconfig/utils/InputUtils.java +++ b/src/main/java/io/polyfrost/oneconfig/utils/InputUtils.java @@ -14,4 +14,16 @@ public class InputUtils { int mouseY = Minecraft.getMinecraft().displayHeight - Math.abs(Mouse.getY()); return mouseX > x && mouseY > y && mouseX < x + width && mouseY < y + height; // TODO add scaling info } + + public static boolean isClicked(int x, int y, int width, int height) { + return isAreaHovered(x, y, width, height) && Mouse.isButtonDown(0); // TODO make actually do what its meant to do (only 1 event) + } + + public static int mouseX() { + return Mouse.getX(); + } + + public static int mouseY() { + return Minecraft.getMinecraft().displayHeight - Math.abs(Mouse.getY()); + } } |
