-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,337 changed files
with
24,409 additions
and
15,267 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package bartworks.client.gui; | ||
|
||
import net.minecraft.client.gui.GuiScreen; | ||
|
||
import com.gtnewhorizon.gtnhlib.config.SimpleGuiFactory; | ||
|
||
public class BWGuiFactory implements SimpleGuiFactory { | ||
|
||
@Override | ||
public Class<? extends GuiScreen> mainConfigGuiClass() { | ||
return ConfigGUI.class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package bartworks.client.gui; | ||
|
||
import static gregtech.api.enums.Mods.BartWorks; | ||
|
||
import net.minecraft.client.gui.GuiScreen; | ||
|
||
import com.gtnewhorizon.gtnhlib.config.ConfigException; | ||
import com.gtnewhorizon.gtnhlib.config.SimpleGuiConfig; | ||
|
||
import bartworks.common.configs.Configuration; | ||
|
||
public class ConfigGUI extends SimpleGuiConfig { | ||
|
||
public ConfigGUI(GuiScreen parentScreen) throws ConfigException { | ||
super(parentScreen, BartWorks.ID, "BartWorks", Configuration.class); | ||
} | ||
} |
Oops, something went wrong.