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

15 lines
328 B
Java
Raw Normal View History

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