remove GenerationSettings

This commit is contained in:
dfsek
2021-12-04 18:49:43 -07:00
parent ca84628eb9
commit 3da2565f57
4 changed files with 2 additions and 132 deletions

View File

@@ -1,44 +0,0 @@
/*
* Copyright (c) 2020-2021 Polyhedral Development
*
* The Terra API is licensed under the terms of the MIT License. For more details,
* reference the LICENSE file in the common/api directory.
*/
package com.dfsek.terra.api.world.biome;
import com.dfsek.terra.api.noise.NoiseSampler;
public interface GenerationSettings {
/**
* Gets the noise sampler instance to use for base terrain.
*
* @return NoiseSampler for terrain
*/
NoiseSampler getBaseSampler();
/**
* Gets the noise sampler to use for elevation
*
* @return NoiseSampler for elevation.
*/
NoiseSampler getElevationSampler();
/**
* Gets the noise sampler to use for carving.
*
* @return NoiseSampler for carving.
*/
NoiseSampler getCarver();
int getBlendDistance();
double getWeight();
NoiseSampler getBiomeNoise();
double getElevationWeight();
int getBlendStep();
}