mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 09:14:53 +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;
|
|
}; |