Guest User

Untitled

a guest
May 16th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public class mod_GlowingBlock extends BaseMod{
  4.    
  5.     public static Block GlowingBlock = new BlockGlowingBlock(190).setHardness(0.5F).setResistance(5.0F).setLightValue(1.0F).setBlockName("Glowing Block");
  6.    
  7.     public String getVersion(){
  8.         return "1.0.0";
  9.     }
  10.    
  11.     public mod_GlowingBlock(){
  12.        
  13.        
  14.     }
  15.  
  16. }
Add Comment
Please, Sign In to add comment