package net.minecraft.world.entity.ambient;

import net.minecraft.world.entity.EntityInsentient;
import net.minecraft.world.entity.EntityTypes;
import net.minecraft.world.entity.player.EntityHuman;
import net.minecraft.world.level.World;

public abstract class EntityAmbient extends EntityInsentient {

    protected EntityAmbient(EntityTypes<? extends EntityAmbient> entitytypes, World world) {
        super(entitytypes, world);
    }

    @Override
    public boolean a(EntityHuman entityhuman) {
        return false;
    }
}
