mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-21 18:24:34 +00:00
10 lines
173 B
C++
10 lines
173 B
C++
#pragma once
|
|
|
|
class BossMob
|
|
{
|
|
public:
|
|
virtual float getMaxHealth() = 0;
|
|
virtual float getHealth() = 0;
|
|
virtual wstring getAName() = 0;
|
|
virtual int getDimension() = 0;
|
|
}; |