Package pneumaticCraft.common.thirdparty.ic2

Examples of pneumaticCraft.common.thirdparty.ic2.IC2


 
  @Method(modid = "IC2")
  public static void addIC2BronzeRecipe()
  {
    try {
      Recipes.macerator.addRecipe(new RecipeInputOreDict("ingotBronze"), null, MekanismUtils.size(OreDictionary.getOres("dustBronze").get(0), 1));
    } catch(Exception e) {}
  }
View Full Code Here


            case GUI_ID_UNIVERSAL_SENSOR:
                return new GuiUniversalSensor(player.inventory, (TileEntityUniversalSensor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_GENERATOR:
                return new GuiPneumaticGenerator(player.inventory, (TileEntityPneumaticGenerator)world.getTileEntity(x, y, z));
            case GUI_ID_ELECTRIC_COMPRESSOR:
                return new GuiElectricCompressor(player.inventory, (TileEntityElectricCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_ENGINE:
                return new GuiPneumaticEngine(player.inventory, (TileEntityPneumaticEngine)world.getTileEntity(x, y, z));
            case GUI_ID_KINETIC_COMPRESSOR:
                return new GuiKineticCompressor(player.inventory, (TileEntityKineticCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_AERIAL_INTERFACE:
View Full Code Here

            case GUI_ID_HACKING:
                return new GuiSecurityStationHacking(player.inventory, (TileEntitySecurityStation)world.getTileEntity(x, y, z));
            case GUI_ID_UNIVERSAL_SENSOR:
                return new GuiUniversalSensor(player.inventory, (TileEntityUniversalSensor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_GENERATOR:
                return new GuiPneumaticGenerator(player.inventory, (TileEntityPneumaticGenerator)world.getTileEntity(x, y, z));
            case GUI_ID_ELECTRIC_COMPRESSOR:
                return new GuiElectricCompressor(player.inventory, (TileEntityElectricCompressor)world.getTileEntity(x, y, z));
            case GUI_ID_PNEUMATIC_ENGINE:
                return new GuiPneumaticEngine(player.inventory, (TileEntityPneumaticEngine)world.getTileEntity(x, y, z));
            case GUI_ID_KINETIC_COMPRESSOR:
View Full Code Here

TOP

Related Classes of pneumaticCraft.common.thirdparty.ic2.IC2

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.