Remove GuiFactory as config is built into neoforge

This commit is contained in:
Mrbysco 2024-10-22 19:20:52 +02:00
parent 53b721f824
commit 7d5876a7ad
2 changed files with 0 additions and 43 deletions

View file

@ -67,8 +67,6 @@ public class ActuallyAdditions {
public static final String NAME = "Actually Additions";
@Deprecated
public static final String VERSION = "@VERSION@";
@Deprecated
public static final String GUIFACTORY = "de.ellpeck.actuallyadditions.mod.config.GuiFactory";
public static final String DEPS = "required:forge@[14.23.5.2836,);before:craftingtweaks;after:fastbench@[1.3.2,)";
public static final Logger LOGGER = LoggerFactory.getLogger(MODID);

View file

@ -1,41 +0,0 @@
// TODO: [port][note] forge does not support this atm
///*
// * This file ("GuiFactory.java") is part of the Actually Additions mod for Minecraft.
// * It is created and owned by Ellpeck and distributed
// * under the Actually Additions License to be found at
// * http://ellpeck.de/actaddlicense
// * View the source code at https://github.com/Ellpeck/ActuallyAdditions
// *
// * © 2015-2017 Ellpeck
// */
//
//package de.ellpeck.actuallyadditions.mod.config;
//
//import java.util.Set;
//
//import net.minecraft.client.Minecraft;
//import net.minecraft.client.gui.GuiScreen;
//import net.minecraftforge.fml.client.IModGuiFactory;
//
//public class GuiFactory implements IModGuiFactory {
//
// @Override
// public void initialize(Minecraft minecraftInstance) {
//
// }
//
// @Override
// public boolean hasConfigGui() {
// return true;
// }
//
// @Override
// public GuiScreen createConfigGui(GuiScreen parentScreen) {
// return new GuiConfiguration(parentScreen);
// }
//
// @Override
// public Set<RuntimeOptionCategoryElement> runtimeGuiCategories() {
// return null;
// }
//}