Start biome remodel

This commit is contained in:
Daniel Mills 2020-07-28 00:02:30 -04:00
parent 108499706a
commit 45dd039c53
2 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,10 @@
package com.volmit.iris.layer;
import com.volmit.iris.object.InferredType;
public class BiomeData
{
private InferredType type;
private CellGenerator generator;
}

View File

@ -20,6 +20,7 @@ public class GenLayerBiome extends GenLayer
private CellGenerator land; private CellGenerator land;
private CellGenerator shore; private CellGenerator shore;
private CellGenerator sea; private CellGenerator sea;
private DimensionChunkGenerator iris; private DimensionChunkGenerator iris;
public GenLayerBiome(DimensionChunkGenerator iris, RNG rng) public GenLayerBiome(DimensionChunkGenerator iris, RNG rng)