Files
Paper/paper-api/src/main/java/org/bukkit/entity/Ghast.java
2022-12-31 10:23:59 +11:00

22 lines
396 B
Java

package org.bukkit.entity;
/**
* Represents a Ghast.
*/
public interface Ghast extends Flying, Enemy {
/**
* Gets whether the Ghast is charging
*
* @return Whether the Ghast is charging
*/
boolean isCharging();
/**
* Sets whether the Ghast is charging
*
* @param flag Whether the Ghast is charging
*/
void setCharging(boolean flag);
}