Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerRobitInventory


      case 23:
        EntityRobit robit1 = (EntityRobit)world.getEntityByID(x);

        if(robit1 != null)
        {
          return new ContainerRobitInventory(player.inventory, robit1);
        }
      case 24:
        EntityRobit robit2 = (EntityRobit)world.getEntityByID(x);

        if(robit2 != null)
View Full Code Here


{
  public EntityRobit robit;

  public GuiRobitInventory(InventoryPlayer inventory, EntityRobit entity)
  {
    super(new ContainerRobitInventory(inventory, entity));
    xSize += 25;
    robit = entity;
  }
View Full Code Here

TOP

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

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.