Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. import java.util.Random;
  4.  
  5. public class BlockTest extends Block
  6. {
  7.     public BlockTest(int i, int j)
  8.     {
  9.         super(i, j, Material.rock);
  10.     }
  11.  
  12.     public int idDropped(int i, Random random)
  13.     {
  14.         return 0;
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement