Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerRobitRepair


  private GuiTextField itemNameField;
  private InventoryPlayer playerInventory;

  public GuiRobitRepair(InventoryPlayer inventory, World world, int id)
  {
    super(new ContainerRobitRepair(inventory, world));
    xSize += 25;
    entityId = id;
    playerInventory = inventory;
    repairContainer = (ContainerRobitRepair)inventorySlots;
  }
View Full Code Here


        if(robit2 != null)
        {
          return new ContainerRobitSmelting(player.inventory, robit2);
        }
      case 25:
        return new ContainerRobitRepair(player.inventory, world);
      case 26:
        return new ContainerNull(player, (TileEntityContainerBlock)tileEntity);
      case 27:
        return new ContainerFilter(player.inventory, (TileEntityContainerBlock)tileEntity);
      case 28:
View Full Code Here

TOP

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

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.