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