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

18 lines
290 B
Java

package org.bukkit.entity;
/**
* Represents a phantom.
*/
public interface Phantom extends Flying, Enemy {
/**
* @return The size of the phantom
*/
public int getSize();
/**
* @param sz The new size of the phantom.
*/
public void setSize(int sz);
}