15 lines
261 B
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();
|
|
}
|