From 009ed0ef14d3a5fd75be17ed2c90688202e69c85 Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 5 Jul 2020 07:17:21 +1000 Subject: 1.9 --- .../github/moulberry/notenoughupdates/CustomAHGui.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java (limited to 'src/main/java/io/github/moulberry/notenoughupdates/CustomAHGui.java') 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; + } + +} -- cgit