Examples of GuiIronFurnace


Examples of Will11690.mod.MechaniCraft.MachineStuff.GuiIronFurnace

  @Override
  public Object getClientGuiElement(int ID, EntityPlayer player, World world, int x, int y, int z) {
    TileEntity tile_entity = world.getBlockTileEntity(x, y, z);
   
    if(tile_entity instanceof TileEntityIronFurnace){
      return new GuiIronFurnace(player.inventory, (TileEntityIronFurnace) tile_entity);
    }
   
    if(tile_entity instanceof TileEntityOreGrinder){
      return new GuiOreGrinder(player.inventory, (TileEntityOreGrinder) tile_entity);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.