Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerChemicalWasher


      case 34:
        return new ContainerChanceMachine(player.inventory, (TileEntityChanceMachine)tileEntity);
      case 35:
        return new ContainerChemicalDissolutionChamber(player.inventory, (TileEntityChemicalDissolutionChamber)tileEntity);
      case 36:
        return new ContainerChemicalWasher(player.inventory, (TileEntityChemicalWasher)tileEntity);
      case 37:
        return new ContainerChemicalCrystallizer(player.inventory, (TileEntityChemicalCrystallizer)tileEntity);
      case 39:
        return new ContainerSeismicVibrator(player.inventory, (TileEntitySeismicVibrator)tileEntity);
      case 40:
View Full Code Here


{
  public TileEntityChemicalWasher tileEntity;

  public GuiChemicalWasher(InventoryPlayer inventory, TileEntityChemicalWasher tentity)
  {
    super(tentity, new ContainerChemicalWasher(inventory, tentity));
    tileEntity = tentity;

    guiElements.add(new GuiRedstoneControl(this, tileEntity, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalWasher.png")));
    guiElements.add(new GuiBucketIO(this, MekanismUtils.getResource(ResourceType.GUI, "GuiChemicalWasher.png")));
    guiElements.add(new GuiEnergyInfo(new IInfoHandler() {
View Full Code Here

TOP

Related Classes of mekanism.common.inventory.container.ContainerChemicalWasher

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.