19 lines
352 B
Java
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();
|
|
}
|