1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-18 08:27:45 +00:00
sapphire/src/world/Math/CalcStats.h
2018-12-13 12:40:42 +01:00

25 lines
402 B
C++

#ifndef _CALCSTATS_H
#define _CALCSTATS_H
#include <Common.h>
#include "Forwards.h"
namespace Sapphire::Math
{
class CalcStats
{
public:
static float calculateBaseStat( Sapphire::Entity::PlayerPtr pPlayer );
static uint32_t calculateMaxMp( Sapphire::Entity::PlayerPtr pPlayer );
static uint32_t calculateMaxHp( Sapphire::Entity::PlayerPtr pPlayer );
private:
};
}
#endif