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

19 lines
263 B
C++

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