Guest User

Untitled

a guest
May 18th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. package com.looke81.biowarfare.container;
  2.  
  3. import net.minecraft.entity.player.InventoryPlayer;
  4. import net.minecraft.inventory.Slot;
  5. import net.minecraft.inventory.SlotFurnaceOutput;
  6.  
  7. import com.looke81.biowarfare.tileentity.TileEntityMicrobeExtractor;
  8.  
  9. public class ContainerMicrobeExtractor extends BaseContainer {
  10.  
  11. public ContainerMicrobeExtractor(InventoryPlayer inventory, TileEntityMicrobeExtractor tileEntity) {
  12.  
  13. addSlotToContainer(new Slot(tileEntity, TileEntityMicrobeExtractor.INPUT_SLOT, 57, 34));
  14. addSlotToContainer(new SlotFurnaceOutput(inventory.player, tileEntity, TileEntityMicrobeExtractor.OUTPUT_SLOT, 117, 34));
  15. bindPlayerInventory(inventory, 8, 84);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment