summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/entity/Boss.java
blob: 78105359cb0217ab6ec121c4479cf2a7e586921c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.bukkit.entity;

import org.bukkit.boss.BossBar;

/**
 * Represents the Boss Entity.
 */
public interface Boss extends Entity {

    /**
     * Returns the {@link BossBar} of the {@link Boss}
     *
     * @return the {@link BossBar} of the entity
     */
    BossBar getBossBar();
}