Flaghacker

Block1.java

Aug 23rd, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. package net.flaghacker.learning;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5.  
  6. public class Block1 extends Block {
  7.  
  8.     public Block1() {
  9.         //Set material type
  10.         super(Material.ground);
  11.     }
  12.    
  13. }
Advertisement
Add Comment
Please, Sign In to add comment