2013-12-27 23:59:59 +01:00
|
|
|
package appeng.container.implementations;
|
|
|
|
|
|
|
|
import net.minecraft.entity.player.InventoryPlayer;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import appeng.container.AEBaseContainer;
|
|
|
|
|
|
|
|
public class ContainerNetworkStatus extends AEBaseContainer
|
|
|
|
{
|
|
|
|
|
|
|
|
TileEntity myte;
|
|
|
|
|
|
|
|
public ContainerNetworkStatus(InventoryPlayer ip, TileEntity te) {
|
2014-01-02 06:51:41 +01:00
|
|
|
super( ip, te, null );
|
2013-12-27 23:59:59 +01:00
|
|
|
myte = te;
|
|
|
|
|
|
|
|
// addSlotToContainer( new SlotRestrictedInput(
|
|
|
|
// PlaceableItemType.WIRELESS_TERMINAL, te, 0, 71, 14 ) );
|
|
|
|
// addSlotToContainer( new SlotOutput( te, 1, 71, 14,
|
|
|
|
// PlaceableItemType.WIRELESS_TERMINAL.icon ) );
|
|
|
|
|
|
|
|
bindPlayerInventory( ip, 0, 199 - /* height of playerinventory */82 );
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|