Guest User

Untitled

a guest
Oct 21st, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class ItemExample extends Item
  4. {
  5. public ItemFood(int i)
  6. {
  7. super(i);
  8. maxStackSize = 64;
  9. }
  10.  
  11. public ItemStack onItemRightClick(Itemstack itemstack, World world, EntityPlayer entityplayer)
  12. {
  13. }
  14.  
  15. }
Add Comment
Please, Sign In to add comment