1#pragma once 2 3class BossMob 4{ 5public: 6 virtual float getMaxHealth() = 0; 7 virtual float getHealth() = 0; 8 virtual wstring getAName() = 0; 9};