mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-20 16:35:42 +00:00
8 lines
154 B
C++
8 lines
154 B
C++
#pragma once
|
|
|
|
class BossMob {
|
|
public:
|
|
virtual float getMaxHealth() = 0;
|
|
virtual float getHealth() = 0;
|
|
virtual std::wstring getAName() = 0;
|
|
}; |