blob: 0399c13a59d7acfb0b7a8bd8dda92cefd22412ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package tectech.loader.gui;
import static gregtech.api.enums.Mods.TecTech;
import net.minecraft.client.gui.GuiScreen;
import com.gtnewhorizon.gtnhlib.config.ConfigException;
import com.gtnewhorizon.gtnhlib.config.SimpleGuiConfig;
import tectech.loader.ConfigHandler;
public class TecTechGUIClientConfig extends SimpleGuiConfig {
public TecTechGUIClientConfig(GuiScreen parentScreen) throws ConfigException {
super(parentScreen, TecTech.ID, "TecTech - Tec Technology!", false, ConfigHandler.class);
}
}
|