mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
24 lines
341 B
C
24 lines
341 B
C
![]() |
#ifndef _CALCBATTLE_H
|
||
|
#define _CALCBATTLE_H
|
||
|
|
||
|
#include <src/servers/Server_Common/Common.h>
|
||
|
#include "Actor.h"
|
||
|
|
||
|
namespace Core {
|
||
|
namespace Entity {
|
||
|
|
||
|
class CalcBattle
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
static uint32_t measureHp( ActorPtr Player );
|
||
|
static uint32_t measureHeal( ActorPtr Player, uint32_t potency );
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#endif
|