Advertisement
Guest User

biomes.java

a guest
Nov 23rd, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. package ilexiconn.cookie.biome;
  2.  
  3. import cpw.mods.fml.common.registry.GameRegistry;
  4. import net.minecraft.world.biome.BiomeGenBase;
  5.  
  6. public class biomes
  7. {
  8.     public static BiomeGenBase cookieBiome;
  9.    
  10.     public static void load()
  11.     {
  12.         cookieBiome = new cookieBiome(40);
  13.     }
  14.    
  15.     public static void register()
  16.     {
  17.         GameRegistry.addBiome(cookieBiome);
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement