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