diff options
author | boubou19 <miisterunknown@gmail.com> | 2024-09-19 22:21:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-19 20:21:11 +0000 |
commit | 0a5c7ecc004444a089edbed28f4ecb136bc21f1f (patch) | |
tree | 34412bd3edef575d1564a452515bf9e40fa16a27 /src/main/java/tectech/loader/gui/TecTechGUIFactory.java | |
parent | f4abde3ab05502b587ce114837459e3d1eca3e5f (diff) | |
download | GT5-Unofficial-0a5c7ecc004444a089edbed28f4ecb136bc21f1f.tar.gz GT5-Unofficial-0a5c7ecc004444a089edbed28f4ecb136bc21f1f.tar.bz2 GT5-Unofficial-0a5c7ecc004444a089edbed28f4ecb136bc21f1f.zip |
TecTech config migration to GTNHLib (#3207)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/tectech/loader/gui/TecTechGUIFactory.java')
-rw-r--r-- | src/main/java/tectech/loader/gui/TecTechGUIFactory.java | 13 |
1 files changed, 13 insertions, 0 deletions
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<? extends GuiScreen> mainConfigGuiClass() { + return TecTechGUIClientConfig.class; + } +} |