Files
Paper/paper-api/src/main/java/org/bukkit/entity/Boss.java
2019-03-13 17:42:57 +11:00

19 lines
352 B
Java

package org.bukkit.entity;
import org.bukkit.boss.BossBar;
import org.jetbrains.annotations.Nullable;
/**
* Represents the Boss Entity.
*/
public interface Boss extends Entity {
/**
* Returns the {@link BossBar} of the {@link Boss}
*
* @return the {@link BossBar} of the entity
*/
@Nullable
BossBar getBossBar();
}