001package net.minecraft.entity;
002
003public class EntityEggInfo
004{
005    /** The entityID of the spawned mob */
006    public int spawnedID;
007
008    /** Base color of the egg */
009    public int primaryColor;
010
011    /** Color of the egg spots */
012    public int secondaryColor;
013
014    public EntityEggInfo(int par1, int par2, int par3)
015    {
016        this.spawnedID = par1;
017        this.primaryColor = par2;
018        this.secondaryColor = par3;
019    }
020}