1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 14:57:44 +00:00
sapphire/src/servers/sapphire_zone/Math/CalcStats.h

27 lines
400 B
C
Raw Normal View History

#ifndef _CALCSTATS_H
#define _CALCSTATS_H
2018-03-06 22:22:19 +01:00
#include <Common.h>
2018-02-28 11:14:25 +01:00
#include "Forwards.h"
using namespace Core::Entity;
namespace Core {
namespace Math {
class CalcStats
{
public:
static float calculateBaseStat( PlayerPtr pPlayer );
2017-08-20 19:20:37 -03:00
static uint32_t calculateMaxMp( PlayerPtr pPlayer );
static uint32_t calculateMaxHp( PlayerPtr pPlayer );
private:
};
}
}
#endif