2014-02-03 05:33:50 +01:00
|
|
|
package appeng.client.gui.implementations;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import appeng.api.implementations.guiobjects.IPortableCell;
|
|
|
|
|
|
|
|
public class GuiWirelessTerm extends GuiMEPortableCell
|
|
|
|
{
|
|
|
|
|
|
|
|
public GuiWirelessTerm(InventoryPlayer inventoryPlayer, IPortableCell te) {
|
|
|
|
super( inventoryPlayer, te );
|
2014-02-03 06:02:54 +01:00
|
|
|
maxRows = Integer.MAX_VALUE;
|
2014-02-03 05:33:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|