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

25 lines
314 B
C
Raw Normal View History

#ifndef _CALCBATTLE_H
#define _CALCBATTLE_H
#include <common/Common.h>
2018-02-28 11:14:25 +01:00
#include "Forwards.h"
using namespace Core::Entity;
namespace Core {
namespace Math {
class CalcBattle
{
public:
static uint32_t calculateHealValue( PlayerPtr pPlayer, uint32_t potency );
private:
};
}
}
#endif