blob: fe0161b778f214c1b2a2cca06b654483ad65e7f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package ggfab;
import static gregtech.api.enums.Mods.GGFab;
import net.minecraft.client.gui.GuiScreen;
import com.gtnewhorizon.gtnhlib.config.ConfigException;
import com.gtnewhorizon.gtnhlib.config.SimpleGuiConfig;
public class GGFabGUIClientConfig extends SimpleGuiConfig {
public GGFabGUIClientConfig(GuiScreen parentScreen) throws ConfigException {
super(parentScreen, GGFab.ID, GGConstants.MODNAME, false, ConfigurationHandler.class);
}
}
|