Files
Paper/paper-api/src/main/java/org/bukkit/entity/Phantom.java
2018-08-25 19:56:42 -05:00

31 lines
585 B
Java

package org.bukkit.entity;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* 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);
// Paper start
/**
* Get the UUID of the entity that caused this phantom to spawn
*
* @return UUID
*/
@Nullable
public java.util.UUID getSpawningEntity();
// Paper end
}