Advertisement
Guest User

OliveBlock

a guest
Mar 25th, 2013
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.42 KB | None | 0 0
  1. package OliveCraft;
  2.  
  3. import net.minecraft.block.Block;
  4. import net.minecraft.block.material.Material;
  5. import net.minecraft.creativetab.CreativeTabs;
  6.  
  7.     public class OliveBlock extends Block
  8.     {
  9.        
  10.         protected OliveBlock(int ID)
  11.         {
  12.            
  13.             super(230, Material.leaves);
  14.             this.setCreativeTab(CreativeTabs.tabDecorations);
  15.            
  16.         }
  17.     public String getTextureFile()
  18.     {
  19.         return "/textures/blocks/OliveBlock.png";
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement