GT5-Unofficial/src/main/java/gregtech/api/gui/GT_Container_1by1.java

28 lines
699 B
Java
Raw Normal View History

2015-04-23 16:14:22 +00:00
package gregtech.api.gui;
import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import net.minecraft.entity.player.InventoryPlayer;
import net.minecraft.inventory.Slot;
public class GT_Container_1by1 extends GT_ContainerMetaTile_Machine {
2015-10-22 02:06:25 +00:00
public GT_Container_1by1(InventoryPlayer aInventoryPlayer, IGregTechTileEntity aTileEntity) {
super(aInventoryPlayer, aTileEntity);
}
@Override
2015-04-23 16:14:22 +00:00
public void addSlots(InventoryPlayer aInventoryPlayer) {
2015-10-22 02:06:25 +00:00
addSlotToContainer(new Slot(mTileEntity, 0, 80, 35));
2015-04-23 16:14:22 +00:00
}
2015-10-22 02:06:25 +00:00
@Override
2015-04-23 16:14:22 +00:00
public int getSlotCount() {
2015-10-22 02:06:25 +00:00
return 1;
2015-04-23 16:14:22 +00:00
}
2015-10-22 02:06:25 +00:00
@Override
2015-04-23 16:14:22 +00:00
public int getShiftClickSlotCount() {
2015-10-22 02:06:25 +00:00
return 1;
2015-04-23 16:14:22 +00:00
}
}