1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-08 19:57:46 +00:00
sapphire/src/servers/sapphire_zone/Math/CalcBattle.h
2018-10-28 21:53:21 +01:00

19 lines
255 B
C++

#ifndef _CALCBATTLE_H
#define _CALCBATTLE_H
#include <Common.h>
#include "Forwards.h"
namespace Core::Math
{
class CalcBattle
{
public:
static uint32_t calculateHealValue( Core::Entity::PlayerPtr pPlayer, uint32_t potency );
};
}
#endif