10 lines
260 B
Java
10 lines
260 B
Java
package net.minecraft.world.entity.monster;
|
|
|
|
import net.minecraft.world.entity.LivingEntity;
|
|
|
|
public interface RangedAttackMob {
|
|
/**
|
|
* Attack the specified entity using a ranged attack.
|
|
*/
|
|
void performRangedAttack(LivingEntity target, float velocity);
|
|
}
|