001 package net.minecraft.world.biome;
002
003 import net.minecraft.util.WeightedRandomItem;
004
005 public class SpawnListEntry extends WeightedRandomItem
006 {
007 /** Holds the class of the entity to be spawned. */
008 public Class entityClass;
009 public int minGroupCount;
010 public int maxGroupCount;
011
012 public SpawnListEntry(Class par1Class, int par2, int par3, int par4)
013 {
014 super(par2);
015 this.entityClass = par1Class;
016 this.minGroupCount = par3;
017 this.maxGroupCount = par4;
018 }
019 }