Advertisement
Guest User

Untitled

a guest
Sep 27th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package foragecraft.blocks;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5. import net.minecraft.util.math.AxisAlignedBB;
  6.  
  7. public class Scarecrow extends Block
  8. {
  9.     protected static final AxisAlignedBB area = new AxisAlignedBB(16, 16, 16, 16, 16, 16);
  10.    
  11.     public Scarecrow()
  12.     {
  13.         super(Material.WOOD);
  14.     }
  15.    
  16.     public static AxisAlignedBB getArea()
  17.     {
  18.         return area;
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement