Advertisement
Guest User

Untitled

a guest
May 27th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. import net.minecraft.entity.player.EntityPlayer;
  2. import net.minecraft.inventory.ContainerChest;
  3. import net.minecraft.inventory.IInventory;
  4. import net.minecraft.item.ItemStack;
  5.  
  6. public class GUIContainer extends ContainerChest
  7. {
  8.     public GUIContainer(IInventory playerInventory, IInventory chestInventory, EntityPlayer player)
  9.     {
  10.         super(playerInventory, chestInventory, player);
  11.     }
  12.  
  13.     @Override
  14.     public ItemStack transferStackInSlot(EntityPlayer playerIn, int index)
  15.     {
  16.         return null;
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement