1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 07:37:45 +00:00
sapphire/src/servers/sapphire_zone/Math/CalcStats.h
2017-12-19 09:27:22 +01:00

26 lines
410 B
C++

#ifndef _CALCSTATS_H
#define _CALCSTATS_H
#include <common/Common.h>
#include "Actor/Actor.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