mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-04 17:57:47 +00:00
24 lines
No EOL
335 B
C++
24 lines
No EOL
335 B
C++
#ifndef _CALCBATTLE_H
|
|
#define _CALCBATTLE_H
|
|
|
|
#include <Server_Common/Common.h>
|
|
#include <Server_Zone/Actor/Actor.h>
|
|
|
|
using namespace Core::Entity;
|
|
|
|
namespace Core {
|
|
namespace Math {
|
|
|
|
class CalcBattle
|
|
{
|
|
public:
|
|
static uint32_t calculateHealValue( PlayerPtr pPlayer, uint32_t potency );
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif |