Files
Paper/paper-api/src/main/java/org/bukkit/entity/Vex.java
2019-03-05 16:47:25 +11:00

26 lines
531 B
Java

package org.bukkit.entity;
/**
* Represents a Vex.
*/
public interface Vex extends Monster {
/**
* Gets the charging state of this entity.
*
* When this entity is charging it will having a glowing red texture.
*
* @return charging state
*/
boolean isCharging();
/**
* Sets the charging state of this entity.
*
* When this entity is charging it will having a glowing red texture.
*
* @param charging new state
*/
void setCharging(boolean charging);
}