cpw.mods.fml.common.modloader
Class ModLoaderWorldGenerator

java.lang.Object
  extended by cpw.mods.fml.common.modloader.ModLoaderWorldGenerator
All Implemented Interfaces:
IWorldGenerator

public class ModLoaderWorldGenerator
extends Object
implements IWorldGenerator


Constructor Summary
ModLoaderWorldGenerator(BaseModProxy mod)
           
 
Method Summary
 void generate(Random random, int chunkX, int chunkZ, World world, IChunkProvider chunkGenerator, IChunkProvider chunkProvider)
          Generate some world
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ModLoaderWorldGenerator

public ModLoaderWorldGenerator(BaseModProxy mod)
Method Detail

generate

public void generate(Random random,
                     int chunkX,
                     int chunkZ,
                     World world,
                     IChunkProvider chunkGenerator,
                     IChunkProvider chunkProvider)
Description copied from interface: IWorldGenerator
Generate some world

Specified by:
generate in interface IWorldGenerator
Parameters:
random - the chunk specific Random.
chunkX - the chunk X coordinate of this chunk.
chunkZ - the chunk Z coordinate of this chunk.
world - : additionalData[0] The minecraft World we're generating for.
chunkGenerator - : additionalData[1] The IChunkProvider that is generating.
chunkProvider - : additionalData[2] IChunkProvider that is requesting the world generation.