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