mirror of
https://github.com/Minestom/Minestom.git
synced 2025-01-03 23:17:48 +01:00
Merge pull request #41 from Nesaak/master
Make ChunkGenerator an interface
This commit is contained in:
commit
c92d1626b5
@ -5,12 +5,12 @@ import net.minestom.server.world.biomes.Biome;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public abstract class ChunkGenerator {
|
||||
public interface ChunkGenerator {
|
||||
|
||||
public abstract void generateChunkData(ChunkBatch batch, int chunkX, int chunkZ);
|
||||
void generateChunkData(ChunkBatch batch, int chunkX, int chunkZ);
|
||||
|
||||
public abstract void fillBiomes(Biome[] biomes, int chunkX, int chunkZ);
|
||||
void fillBiomes(Biome[] biomes, int chunkX, int chunkZ);
|
||||
|
||||
public abstract List<ChunkPopulator> getPopulators();
|
||||
List<ChunkPopulator> getPopulators();
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user