mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-26 09:09:55 +05:00
9 lines
140 B
C++
9 lines
140 B
C++
#pragma once
|
|
|
|
class BossMob
|
|
{
|
|
public:
|
|
virtual float getMaxHealth() = 0;
|
|
virtual float getHealth() = 0;
|
|
virtual wstring getAName() = 0;
|
|
}; |