Begin the Great Refactor of Mid-2017

This commit is contained in:
Prospector 2017-06-13 16:49:52 -07:00
parent a4a4042eb1
commit 1fa9f1cf52
97 changed files with 328 additions and 1713 deletions

View file

@ -25,13 +25,13 @@
package techreborn.client.gui;
import net.minecraft.entity.player.EntityPlayer;
import techreborn.tiles.TileChargeBench;
import techreborn.tiles.TileChargeOMat;
public class GuiChargeBench extends GuiBase {
TileChargeBench tile;
TileChargeOMat tile;
public GuiChargeBench(final EntityPlayer player, final TileChargeBench tile) {
public GuiChargeBench(final EntityPlayer player, final TileChargeOMat tile) {
super(player, tile, tile.createContainer(player));
this.tile = tile;
}