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