Implement BossBar API

By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
Bukkit/Spigot
2016-03-01 08:30:03 +11:00
parent 2e3099f3cf
commit b54073a1e1
5 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package org.bukkit.boss;
public enum BarStyle {
/**
* Makes the boss bar solid (no segments)
*/
SOLID,
/**
* Splits the boss bar into 6 segments
*/
SEGMENTED_6,
/**
* Splits the boss bar into 10 segments
*/
SEGMENTED_10,
/**
* Splits the boss bar into 12 segments
*/
SEGMENTED_12,
/**
* Splits the boss bar into 20 segments
*/
SEGMENTED_20,
}