the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 9 lines 140 B view raw
1#pragma once 2 3class BossMob 4{ 5public: 6 virtual float getMaxHealth() = 0; 7 virtual float getHealth() = 0; 8 virtual wstring getAName() = 0; 9};