Files
Paper/paper-api/src/main/java/org/bukkit/entity/Phantom.java
2018-07-15 10:00:00 +10:00

18 lines
283 B
Java

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