aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java
diff options
context:
space:
mode:
authorunknown <james.jenour@protonmail.com>2020-07-05 07:17:21 +1000
committerunknown <james.jenour@protonmail.com>2020-07-05 07:17:21 +1000
commit009ed0ef14d3a5fd75be17ed2c90688202e69c85 (patch)
treea419b25440e6944f2cfff7f0f7279deea011b407 /src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java
parentbd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4 (diff)
downloadnotenoughupdates-009ed0ef14d3a5fd75be17ed2c90688202e69c85.tar.gz
notenoughupdates-009ed0ef14d3a5fd75be17ed2c90688202e69c85.tar.bz2
notenoughupdates-009ed0ef14d3a5fd75be17ed2c90688202e69c85.zip
1.9
Diffstat (limited to 'src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java')
-rw-r--r--src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java b/src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java
new file mode 100644
index 00000000..af7486a0
--- /dev/null
+++ b/src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java
@@ -0,0 +1,16 @@
+package io.github.moulberry.notenoughupdates;
+
+import net.minecraft.client.gui.GuiScreen;
+import org.lwjgl.input.Mouse;
+
+public class CustomAHGui extends GuiScreen {
+
+ public CustomAHGui() {
+ this.allowUserInput = true;
+ }
+
+ public boolean doesGuiPauseGame() {
+ return false;
+ }
+
+}