25 lines
557 B
Java
25 lines
557 B
Java
package org.bukkit.entity;
|
|
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
/**
|
|
* Represents Evoker Fangs.
|
|
*/
|
|
public interface EvokerFangs extends Entity {
|
|
|
|
/**
|
|
* Gets the {@link LivingEntity} which summoned the fangs.
|
|
*
|
|
* @return the {@link LivingEntity} which summoned the fangs
|
|
*/
|
|
@Nullable
|
|
LivingEntity getOwner();
|
|
|
|
/**
|
|
* Sets the {@link LivingEntity} which summoned the fangs.
|
|
*
|
|
* @param owner the {@link LivingEntity} which summoned the fangs
|
|
*/
|
|
void setOwner(@Nullable LivingEntity owner);
|
|
}
|