OSDN Git Service

Gui系統全部作りなおすためファイル一新
[chemicraft/chemicraft.git] / common / chemicraft / gui / GuiChemicalCraftingTable.java
index c1f6c43..76f533b 100644 (file)
@@ -2,7 +2,6 @@ package chemicraft.gui;
 
 import net.minecraft.src.EntityPlayer;
 import net.minecraft.src.GuiContainer;
-import net.minecraft.src.InventoryPlayer;
 import chemicraft.ChemiCraft;
 import chemicraft.container.ContainerChemicalCraftingTable;
 import chemicraft.tileentity.TileEntityChemicalCraftingTable;
@@ -12,30 +11,8 @@ import cpw.mods.fml.common.asm.SideOnly;
 @SideOnly(Side.CLIENT)
 public class GuiChemicalCraftingTable extends GuiContainer {
 
-       /**
-        * the TileEntity.
-        */
-       private TileEntityChemicalCraftingTable tileEntity;
-
-
-       /**
-        * the InventoryPlayer.
-        */
-       private InventoryPlayer inventoryPlayer;
-
-
-       /**
-        * the Container
-        */
-       private ContainerChemicalCraftingTable container;
-
-
-
        public GuiChemicalCraftingTable(EntityPlayer par1EntityPlayer, TileEntityChemicalCraftingTable par2){
                super(new ContainerChemicalCraftingTable(par1EntityPlayer, par2));
-               this.inventoryPlayer = par1EntityPlayer.inventory;
-               this.tileEntity = par2;
-               this.container = (ContainerChemicalCraftingTable) this.inventorySlots;
        }