aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java
diff options
context:
space:
mode:
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;
+ }
+
+}