2017-11-21 03:19:08 -02:00
|
|
|
#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"
|
2017-11-21 03:19:08 -02:00
|
|
|
|
2018-11-29 16:55:48 +01:00
|
|
|
namespace Sapphire::Math
|
2018-08-29 21:40:59 +02:00
|
|
|
{
|
2017-11-21 03:19:08 -02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
class CalcBattle
|
|
|
|
{
|
|
|
|
public:
|
2018-11-29 16:55:48 +01:00
|
|
|
static uint32_t calculateHealValue( Sapphire::Entity::PlayerPtr pPlayer, uint32_t potency );
|
2018-08-29 21:40:59 +02:00
|
|
|
|
2018-10-28 21:53:21 +01:00
|
|
|
};
|
2017-11-21 03:19:08 -02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-12-08 15:38:25 +01:00
|
|
|
#endif
|