mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-10 22:51:56 +00: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;
|
|
}; |