mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-08 19:57:46 +00:00
19 lines
255 B
C++
19 lines
255 B
C++
#ifndef _CALCBATTLE_H
|
|
#define _CALCBATTLE_H
|
|
|
|
#include <Common.h>
|
|
#include "Forwards.h"
|
|
|
|
namespace Core::Math
|
|
{
|
|
|
|
class CalcBattle
|
|
{
|
|
public:
|
|
static uint32_t calculateHealValue( Core::Entity::PlayerPtr pPlayer, uint32_t potency );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|