Add additional APIs for Evoker / EvokerFangs
By: momothereal <momothereal.mc@gmail.com>
This commit is contained in:
@@ -3,4 +3,19 @@ package org.bukkit.entity;
|
||||
/**
|
||||
* Represents Evoker Fangs.
|
||||
*/
|
||||
public interface EvokerFangs extends Entity { }
|
||||
public interface EvokerFangs extends Entity {
|
||||
|
||||
/**
|
||||
* Gets the {@link LivingEntity} which summoned the fangs.
|
||||
*
|
||||
* @return the {@link LivingEntity} which summoned the fangs
|
||||
*/
|
||||
LivingEntity getOwner();
|
||||
|
||||
/**
|
||||
* Sets the {@link LivingEntity} which summoned the fangs.
|
||||
*
|
||||
* @param owner the {@link LivingEntity} which summoned the fangs
|
||||
*/
|
||||
void setOwner(LivingEntity owner);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user