Files
Paper/paper-api/src/main/java/org/bukkit/entity/Witch.java

15 lines
261 B
Java

package org.bukkit.entity;
/**
* Represents a Witch
*/
public interface Witch extends Raider {
/**
* Gets whether the witch is drinking a potion
*
* @return whether the witch is drinking a potion
*/
boolean isDrinkingPotion();
}