minecraft-source/src/net/minecraft/world/level/biome/TheEndBiomeSourceSettings.java

16 lines
369 B
Java
Raw Normal View History

2020-07-22 06:23:34 +01:00
package net.minecraft.world.level.biome;
2020-07-22 06:25:47 +01:00
import net.minecraft.world.level.storage.LevelData;
2020-07-22 06:23:34 +01:00
public class TheEndBiomeSourceSettings implements BiomeSourceSettings {
2020-07-22 06:25:47 +01:00
private final long seed;
2020-07-22 06:23:34 +01:00
2020-07-22 06:25:47 +01:00
public TheEndBiomeSourceSettings(final LevelData crj) {
this.seed = crj.getSeed();
2020-07-22 06:23:34 +01:00
}
public long getSeed() {
return this.seed;
}
}