mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 10:43:14 +00:00
21 lines
358 B
Java
21 lines
358 B
Java
package ninja.bytecode.iris.util;
|
|
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
|
|
public interface Glower
|
|
{
|
|
public Player getObserver();
|
|
|
|
public Entity getEntity();
|
|
|
|
public ChatColor getColor();
|
|
|
|
public void setColor(ChatColor color);
|
|
|
|
public void setGlowing(boolean glowing);
|
|
|
|
public void destroy();
|
|
}
|