13
0
geforkt von Mirrors/Paper

Add setTarget and getTarget to Slime.

By: Senmori <thesenmori@gmail.com>
Dieser Commit ist enthalten in:
Bukkit/Spigot 2018-02-15 20:30:21 -05:00
Ursprung 57b635b81d
Commit e57e2489b5

Datei anzeigen

@ -14,4 +14,19 @@ public interface Slime extends LivingEntity {
* @param sz The new size of the slime.
*/
public void setSize(int sz);
/**
* Set the {@link LivingEntity} target for this slime. Set to null to clear
* the target.
*
* @param target the entity to target
*/
public void setTarget(LivingEntity target);
/**
* Get the {@link LivingEntity} this slime is currently targeting.
*
* @return the current target, or null if no target exists.
*/
public LivingEntity getTarget();
}