initial commit
This commit is contained in:
parent
3c9ee26b06
commit
22186c33b9
1458 changed files with 282792 additions and 0 deletions
16
java/src/game/worldgen/BiomeGenerator.java
Executable file
16
java/src/game/worldgen/BiomeGenerator.java
Executable file
|
@ -0,0 +1,16 @@
|
|||
package game.worldgen;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
import game.biome.Biome;
|
||||
import game.world.BlockPos;
|
||||
|
||||
public interface BiomeGenerator {
|
||||
public void genFactors(double[] factors, int xPos, int zPos, int sizeX, int sizeZ);
|
||||
public Biome getBiomeGenerator(BlockPos pos, Biome def);
|
||||
public void getGenBiomes(Biome[] biomes, int x, int z, int width, int height);
|
||||
public void getChunkBiomes(Biome[] oldBiomeList, int x, int z, int width, int depth);
|
||||
public void getBiomes(Biome[] listToReuse, int x, int z, int width, int length, boolean cacheFlag);
|
||||
public boolean areBiomesViable(int x, int z, int size, Set<Biome> allowed);
|
||||
public void cleanupCache();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue