use of net.glowstone.boss.GlowBossBar in project Glowstone by GlowstoneMC.
the class GlowServer method createBossBar.
@Override
public BossBar createBossBar(String title, BarColor color, BarStyle style, BarFlag... flags) {
GlowBossBar bossBar = new GlowBossBar(title, color, style, flags);
bossBarManager.register(bossBar);
return bossBar;
}
Aggregations