Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerRobitMain


  private GuiTextField nameChangeField;
  private GuiButton confirmName;

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


      case 21:
        EntityRobit robit = (EntityRobit)world.getEntityByID(x);

        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);
View Full Code Here

TOP

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

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.