mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
Remove GuiFactory as config is built into neoforge
This commit is contained in:
parent
53b721f824
commit
7d5876a7ad
2 changed files with 0 additions and 43 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
// }
|
||||
//}
|
Loading…
Reference in a new issue