001    package net.minecraft.entity.passive;
002    
003    import net.minecraft.entity.EntityLiving;
004    import net.minecraft.world.World;
005    
006    public abstract class EntityAmbientCreature extends EntityLiving implements IAnimals
007    {
008        public EntityAmbientCreature(World par1World)
009        {
010            super(par1World);
011        }
012    }