9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-26 02:29:14 +00:00

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 shore;
private CellGenerator sea;
private DimensionChunkGenerator iris;
public GenLayerBiome(DimensionChunkGenerator iris, RNG rng)