clean up Palette API

This commit is contained in:
dfsek
2021-12-16 21:57:18 -07:00
parent 28b16943f7
commit 888cecdc16
2 changed files with 0 additions and 16 deletions

View File

@@ -13,10 +13,6 @@ import com.dfsek.terra.api.util.collection.ProbabilityCollection;
public interface Palette {
Palette add(BlockState m, int layers, NoiseSampler sampler);
Palette add(ProbabilityCollection<BlockState> m, int layers, NoiseSampler sampler);
/**
* Fetches a material from the palette, at a given layer.
*
@@ -25,6 +21,4 @@ public interface Palette {
* @return BlockData - The material fetched.
*/
BlockState get(int layer, double x, double y, double z, long seed);
int getSize();
}