mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-07 13:57:14 +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;
|
|
}; |