package electrosphere.game.data.biome; import java.util.List; /** * Describes behavior for spawning a specific type of foliage in the biome */ public class BiomeFoliageDescription { /** * The liust of entity IDs of this foliage type in particular */ List entityIDs; /** * The frequency of this element in particular */ Double frequency; /** * The scale of the noise used to generate this element */ Double dispersion; /** * The priority of this floor element in particular */ Double priority; }