From 0a5c7ecc004444a089edbed28f4ecb136bc21f1f Mon Sep 17 00:00:00 2001 From: boubou19 Date: Thu, 19 Sep 2024 22:21:11 +0200 Subject: TecTech config migration to GTNHLib (#3207) Co-authored-by: Martin Robertz --- src/main/java/tectech/loader/gui/TecTechGUIFactory.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/main/java/tectech/loader/gui/TecTechGUIFactory.java (limited to 'src/main/java/tectech/loader/gui/TecTechGUIFactory.java') diff --git a/src/main/java/tectech/loader/gui/TecTechGUIFactory.java b/src/main/java/tectech/loader/gui/TecTechGUIFactory.java new file mode 100644 index 0000000000..f618e77a8c --- /dev/null +++ b/src/main/java/tectech/loader/gui/TecTechGUIFactory.java @@ -0,0 +1,13 @@ +package tectech.loader.gui; + +import net.minecraft.client.gui.GuiScreen; + +import com.gtnewhorizon.gtnhlib.config.SimpleGuiFactory; + +public class TecTechGUIFactory implements SimpleGuiFactory { + + @Override + public Class mainConfigGuiClass() { + return TecTechGUIClientConfig.class; + } +} -- cgit