Package net.minecraft.client.gui.inventory

Examples of net.minecraft.client.gui.inventory.GuiContainer


  @SideOnly(Side.CLIENT)
  public static void openGui(GUIPacket packet, EntityPlayer player) {
    int guiID = packet.getGuiID();
    GuiProvider provider = guilist.get(guiID).template();
    provider.readData(new LPDataInputStream(packet.getGuiData()));
    GuiContainer screen;
    try {
      screen = (GuiContainer) provider.getClientGui(player);
    } catch(Exception e) {
      LogisticsPipes.log.error(packet.getClass().getName());
      LogisticsPipes.log.error(packet.toString());
View Full Code Here

TOP

Related Classes of net.minecraft.client.gui.inventory.GuiContainer

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.