mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-04-12 18:56:04 +00:00
TerraGenerationStage -> GenerationStage
This commit is contained in:
@@ -3,6 +3,6 @@ package com.dfsek.terra.api.world.generator;
|
||||
import com.dfsek.terra.api.world.Chunk;
|
||||
import com.dfsek.terra.api.world.World;
|
||||
|
||||
public interface TerraGenerationStage {
|
||||
public interface GenerationStage {
|
||||
void populate(World world, Chunk chunk);
|
||||
}
|
||||
@@ -3,5 +3,5 @@ package com.dfsek.terra.api.world.generator;
|
||||
import com.dfsek.terra.api.config.ConfigPack;
|
||||
|
||||
public interface GenerationStageProvider {
|
||||
TerraGenerationStage newInstance(ConfigPack pack);
|
||||
GenerationStage newInstance(ConfigPack pack);
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ public interface TerraChunkGenerator {
|
||||
|
||||
Sampler createSampler(int chunkX, int chunkZ, BiomeProvider provider, World world, int elevationSmooth);
|
||||
|
||||
List<TerraGenerationStage> getGenerationStages();
|
||||
List<GenerationStage> getGenerationStages();
|
||||
|
||||
BlockState getBlock(World world, int x, int y, int z);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user