1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 22:57:45 +00:00
sapphire/src/servers/Server_Zone/Actor/CalcBattle.h

24 lines
341 B
C
Raw Normal View History

#ifndef _CALCBATTLE_H
#define _CALCBATTLE_H
#include <src/servers/Server_Common/Common.h>
#include "Actor.h"
namespace Core {
namespace Entity {
class CalcBattle
{
public:
static uint32_t measureHp( ActorPtr Player );
static uint32_t measureHeal( ActorPtr Player, uint32_t potency );
private:
};
}
}
#endif