ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/config/GuiConfiguration.java
2021-08-22 22:19:57 +01:00

34 lines
1.3 KiB
Java

///*
// * This file ("GuiConfiguration.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 de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
//
//import java.util.ArrayList;
//import java.util.List;
//
//public class GuiConfiguration extends GuiConfig {
//
// public GuiConfiguration(GuiScreen parentScreen) {
// super(parentScreen, getConfigElements(), ActuallyAdditions.MODID, false, false, GuiConfig.getAbridgedConfigPath(ConfigurationHandler.config.toString()));
// }
//
// private static List<IConfigElement> getConfigElements() {
// List<IConfigElement> list = new ArrayList<>();
// for (int i = 0; i < ConfigCategories.values().length; i++) {
// ConfigCategories cat = ConfigCategories.values()[i];
// ConfigurationHandler.config.setCategoryComment(cat.name, cat.comment);
// list.add(new ConfigElement(ConfigurationHandler.config.getCategory(cat.name)));
// }
// return list;
// }
//}