Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerChanceMachine


{
  public TileEntityChanceMachine tileEntity;

  public GuiChanceMachine(InventoryPlayer inventory, TileEntityChanceMachine tentity)
  {
    super(tentity, new ContainerChanceMachine(inventory, tentity));
    tileEntity = tentity;

    guiElements.add(new GuiRedstoneControl(this, tileEntity, tileEntity.guiLocation));
    guiElements.add(new GuiUpgradeManagement(this, tileEntity, tileEntity.guiLocation));
    guiElements.add(new GuiConfigurationTab(this, tileEntity, tileEntity.guiLocation));
View Full Code Here


      case 32:
        return new ContainerElectrolyticSeparator(player.inventory, (TileEntityElectrolyticSeparator)tileEntity);
      case 33:
        return new ContainerSalinationController(player.inventory, (TileEntitySalinationController)tileEntity);
      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:
View Full Code Here

TOP

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

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.