1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-07 19:27:45 +00:00
sapphire/src/world/Math/CalcBattle.h

20 lines
263 B
C
Raw Normal View History

#ifndef _CALCBATTLE_H
#define _CALCBATTLE_H
2018-03-06 22:22:19 +01:00
#include <Common.h>
2018-02-28 11:14:25 +01:00
#include "Forwards.h"
namespace Sapphire::Math
{
2018-10-28 21:53:21 +01:00
class CalcBattle
{
public:
static uint32_t calculateHealValue( Sapphire::Entity::PlayerPtr pPlayer, uint32_t potency );
2018-10-28 21:53:21 +01:00
};
}
#endif