Package mekanism.client.gui

Examples of mekanism.client.gui.GuiDigitalMiner


      {
        return new GuiDigitalMinerConfig(player, (TileEntityDigitalMiner)world.getTileEntity(x, y, z));
      }
      else if(type == 4)
      {
        return new GuiDigitalMiner(player.inventory, (TileEntityDigitalMiner)world.getTileEntity(x, y, z));
      }
      else if(type == 5)
      {
        return new GuiMFilterSelect(player, (TileEntityDigitalMiner)world.getTileEntity(x, y, z));
      }
View Full Code Here


      case 0:
        return new GuiDictionary(player.inventory);
      case 1:
        return new GuiCredits();
      case 2:
        return new GuiDigitalMiner(player.inventory, (TileEntityDigitalMiner)tileEntity);
      case 3:
        return new GuiEnrichmentChamber(player.inventory, (TileEntityElectricMachine)tileEntity);
      case 4:
        return new GuiOsmiumCompressor(player.inventory, (TileEntityAdvancedElectricMachine)tileEntity);
      case 5:
View Full Code Here

TOP

Related Classes of mekanism.client.gui.GuiDigitalMiner

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.