7 lines
199 B
Java
7 lines
199 B
Java
|
package net.minecraft.world.entity.monster;
|
||
|
|
||
|
import net.minecraft.world.entity.LivingEntity;
|
||
|
|
||
|
public interface RangedAttackMob {
|
||
|
void performRangedAttack(LivingEntity p_33317_, float p_33318_);
|
||
|
}
|