summaryrefslogtreecommitdiffstats
path: root/src/Defines.h
diff options
context:
space:
mode:
author12xx12 <44411062+12xx12@users.noreply.github.com>2021-03-05 16:08:30 +0100
committerGitHub <noreply@github.com>2021-03-05 16:08:30 +0100
commit8405b8969f205ffae219361dfc03f3b4c680ce73 (patch)
treecc1aef4347d9e399b80a32afa16b657885fd3603 /src/Defines.h
parentAdd Mushrooms to Generator and fixed up the roofed forest (#5134) (diff)
downloadcuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.gz
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.bz2
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.lz
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.xz
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.tar.zst
cuberite-8405b8969f205ffae219361dfc03f3b4c680ce73.zip
Diffstat (limited to '')
-rw-r--r--src/Defines.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Defines.h b/src/Defines.h
index fb3231ff2..cf030bdd7 100644
--- a/src/Defines.h
+++ b/src/Defines.h
@@ -394,6 +394,35 @@ enum eMessageType
+
+enum class BossBarColor
+{
+ Pink,
+ Blue,
+ Red,
+ Green,
+ Yellow,
+ Purple,
+ White
+};
+
+
+
+
+
+enum class BossBarDivisionType
+{
+ None,
+ SixNotches,
+ TenNotches,
+ TwelveNotches,
+ TwentyNotches
+};
+
+
+
+
+
/** Returns a textual representation of the click action. */
const char * ClickActionToString(int a_ClickAction);