Applied-Energistics-2-tiler.../client/gui/implementations/GuiWirelessTerm.java

15 lines
361 B
Java
Raw Normal View History

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 );
maxRows = Integer.MAX_VALUE;
2014-02-03 05:33:50 +01:00
}
}