ZornTaov

Untitled

Feb 20th, 2011
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. public class mod_Yours extends BaseMod
  2. {
  3.  
  4.     public mod_Yours()
  5.     {
  6. ModLoader.RegisterEntityID(EntityYours.class, "Yours", ModLoader.getUniqueEntityId());
  7. spawnlist.add("Surface biomes", 1, new Object[] {
  8.                     EntityHorse.class
  9.                 });
  10. }
  11.  
  12. public void AddRenderer(Map map)
  13.     {
  14.         map.put(EntityYours.class, new RenderYours());
  15. }
  16. }
Add Comment
Please, Sign In to add comment