mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 04:05:50 -07:00
@@ -3,4 +3,23 @@ package org.bukkit.entity;
|
|||||||
/**
|
/**
|
||||||
* Represents a Vex.
|
* Represents a Vex.
|
||||||
*/
|
*/
|
||||||
public interface Vex extends Monster { }
|
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);
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user