the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 255 B view raw
1#pragma once 2 3class BossMob; 4 5class BossMobGuiInfo 6{ 7public: 8 static float healthProgress; 9 static int displayTicks; 10 static wstring name; 11 static bool darkenWorld; 12 13 static void setBossHealth(shared_ptr<BossMob> boss, bool darkenWorld); 14};