mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-13 22:17:45 +00:00
28 lines
372 B
C++
28 lines
372 B
C++
#ifndef _CALCSTATS_H
|
|
#define _CALCSTATS_H
|
|
|
|
#include <Common.h>
|
|
#include "Forwards.h"
|
|
|
|
using namespace Core::Entity;
|
|
|
|
namespace Core {
|
|
namespace Math {
|
|
|
|
class CalcStats
|
|
{
|
|
public:
|
|
static float calculateBaseStat( PlayerPtr pPlayer );
|
|
|
|
static uint32_t calculateMaxMp( PlayerPtr pPlayer );
|
|
|
|
static uint32_t calculateMaxHp( PlayerPtr pPlayer );
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|