Files
Paper/paper-api/src/main/java/org/bukkit/entity/EvokerFangs.java
2019-03-13 17:42:57 +11:00

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);
}