001package net.minecraft.entity; 002 003public interface IRangedAttackMob 004{ 005 /** 006 * Attack the specified entity using a ranged attack. 007 */ 008 void attackEntityWithRangedAttack(EntityLiving entityliving, float f); 009}