diff options
Diffstat (limited to 'Minecraft.Client/BossMobGuiInfo.h')
| -rw-r--r-- | Minecraft.Client/BossMobGuiInfo.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.Client/BossMobGuiInfo.h b/Minecraft.Client/BossMobGuiInfo.h new file mode 100644 index 00000000..bc0d46c9 --- /dev/null +++ b/Minecraft.Client/BossMobGuiInfo.h @@ -0,0 +1,14 @@ +#pragma once + +class BossMob; + +class BossMobGuiInfo +{ +public: + static float healthProgress; + static int displayTicks; + static wstring name; + static bool darkenWorld; + + static void setBossHealth(shared_ptr<BossMob> boss, bool darkenWorld); +};
\ No newline at end of file |
