mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-07 03:07:45 +00:00
19 lines
263 B
C++
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
|