Advertisement
riking

Untitled

Nov 24th, 2011
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. public abstract class mod_Awesome extends BaseMod {
  4.    
  5.     public static final Block gm = new BlockGetMe(140, 0).setBlockName("GM Block");
  6.    
  7.     public mod_Awesome() {
  8.     }
  9.     public load() {
  10.         ModLoader.AddName(gm, "GM BLock");
  11.     }
  12.    
  13.     public String Version()
  14.     {
  15.         return "for 1.0.0";
  16.     }
  17.  
  18. }
  19.  
  20.  
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement