Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerRobitCrafting


{
  public int entityId;

  public GuiRobitCrafting(InventoryPlayer inventory, World world, int id)
  {
    super(new ContainerRobitCrafting(inventory, world));
    entityId = id;
    xSize += 25;
  }
View Full Code Here


        if(robit != null)
        {
          return new ContainerRobitMain(player.inventory, robit);
        }
      case 22:
        return new ContainerRobitCrafting(player.inventory, world);
      case 23:
        EntityRobit robit1 = (EntityRobit)world.getEntityByID(x);

        if(robit1 != null)
        {
View Full Code Here

TOP

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

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.