Guest User

TileEntitySapphireCrop

a guest
Jul 2nd, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package sometimesHardcoreSometimes;
  2.  
  3. import net.minecraft.nbt.NBTTagCompound;
  4. import net.minecraft.tileentity.TileEntity;
  5.  
  6. public class TileEntitySapphireCrop extends TileEntity
  7. {
  8.     int bAmt;
  9.    
  10.     public TileEntitySapphireCrop()
  11.     {
  12.         this.bAmt = 7;
  13.     }
  14.    
  15.     public int getBerryAmount()
  16.     {
  17.         return bAmt;
  18.     }
  19.    
  20.     public void setBerryAmount(int that)
  21.     {
  22.         this.bAmt = that;
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment