1 package chemicraft.gui;
3 import net.minecraft.src.EntityPlayer;
4 import net.minecraft.src.GuiContainer;
5 import chemicraft.ChemiCraft;
6 import chemicraft.container.ContainerDecompositionTable;
7 import chemicraft.tileentity.TileEntityDecompositionTable;
9 public class GuiDecompositionTable extends GuiContainer{
11 public GuiDecompositionTable(EntityPlayer par1EntityPlayer, TileEntityDecompositionTable par2) {
12 super(new ContainerDecompositionTable(par1EntityPlayer, par2));
16 protected void drawGuiContainerBackgroundLayer(float var1, int var2, int var3) {
17 this.mc.renderEngine.bindTexture(this.mc.renderEngine.getTexture(ChemiCraft.instance.guiDecompositionTexture));
18 this.drawTexturedModalRect(this.guiLeft, this.guiTop, 0, 0, this.xSize, this.ySize);