Allows you to determine if an entity is capable of ranged attacks, and to perform an attack.
11 lines
249 B
Java
11 lines
249 B
Java
package org.bukkit.entity;
|
|
|
|
import com.destroystokyo.paper.entity.RangedEntity; // Paper
|
|
|
|
import org.bukkit.inventory.InventoryHolder;
|
|
|
|
/**
|
|
* Illager entity.
|
|
*/
|
|
public interface Pillager extends Illager, InventoryHolder, RangedEntity { } // Paper
|