Package mekanism.common.inventory.container

Examples of mekanism.common.inventory.container.ContainerDictionary


    TileEntity tileEntity = world.getTileEntity(x, y, z);

    switch(ID)
    {
      case 0:
        return new ContainerDictionary(player.inventory);
      case 2:
        return new ContainerDigitalMiner(player.inventory, (TileEntityDigitalMiner)tileEntity);
      case 3:
        return new ContainerElectricMachine(player.inventory, (TileEntityElectricMachine)tileEntity);
      case 4:
View Full Code Here


  public List<String> oreDictNames;

  public GuiDictionary(InventoryPlayer inventory)
  {
    super(new ContainerDictionary(inventory));
  }
View Full Code Here

TOP

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

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.