initial commit

This commit is contained in:
Sen 2025-03-11 00:23:54 +01:00 committed by Sen
parent 3c9ee26b06
commit 22186c33b9
1458 changed files with 282792 additions and 0 deletions

View file

@ -0,0 +1,17 @@
package game.worldgen.layer;
public class GenLayerFuzzyZoom extends GenLayerZoom
{
public GenLayerFuzzyZoom(long p_i2123_1_, GenLayer p_i2123_3_)
{
super(p_i2123_1_, p_i2123_3_);
}
/**
* returns the most frequently occurring number of the set, or a random number from those provided
*/
protected int getFrequent(int p_151617_1_, int p_151617_2_, int p_151617_3_, int p_151617_4_)
{
return this.getRandom(p_151617_1_, p_151617_2_, p_151617_3_, p_151617_4_);
}
}