Package appeng.client.gui.implementations

Source Code of appeng.client.gui.implementations.GuiMEPortableCell

package appeng.client.gui.implementations;

import net.minecraft.entity.player.InventoryPlayer;
import appeng.api.implementations.guiobjects.IPortableCell;
import appeng.container.implementations.ContainerMEPortableCell;

public class GuiMEPortableCell extends GuiMEMonitorable
{

  public GuiMEPortableCell(InventoryPlayer inventoryPlayer, IPortableCell te) {
    super( inventoryPlayer, te, new ContainerMEPortableCell( inventoryPlayer, null ) );
  }

  int defaultGetMaxRows()
  {
    return super.getMaxRows();
  }

  @Override
  int getMaxRows()
  {
    return 3;
  }
}
TOP

Related Classes of appeng.client.gui.implementations.GuiMEPortableCell

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.