Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.looke81.biowarfare.container;
- import net.minecraft.entity.player.InventoryPlayer;
- import net.minecraft.inventory.Slot;
- import net.minecraft.inventory.SlotFurnaceOutput;
- import com.looke81.biowarfare.tileentity.TileEntityMicrobeExtractor;
- public class ContainerMicrobeExtractor extends BaseContainer {
- public ContainerMicrobeExtractor(InventoryPlayer inventory, TileEntityMicrobeExtractor tileEntity) {
- addSlotToContainer(new Slot(tileEntity, TileEntityMicrobeExtractor.INPUT_SLOT, 57, 34));
- addSlotToContainer(new SlotFurnaceOutput(inventory.player, tileEntity, TileEntityMicrobeExtractor.OUTPUT_SLOT, 117, 34));
- bindPlayerInventory(inventory, 8, 84);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment