Generator optimization

This commit is contained in:
paulevsGitch 2020-11-14 13:00:19 +03:00
parent 8e041e0e42
commit 92d4ccab6c
4 changed files with 26 additions and 2 deletions

View file

@ -35,6 +35,7 @@ public class EndBiome {
private final float fogDensity;
private EndFeature structuresFeature;
private Biome actualBiome;
public EndBiome(BiomeDefinition definition) {
biome = definition.build();
@ -157,4 +158,12 @@ public class EndBiome {
public EndFeature getStructuresFeature() {
return structuresFeature;
}
public void setActualBiome(Biome biome) {
this.actualBiome = biome;
}
public Biome getActualBiome() {
return this.actualBiome;
}
}