mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 14:43:37 +00:00
14 lines
368 B
C++
14 lines
368 B
C++
#pragma once
|
|
|
|
#include "MobEffect.h"
|
|
|
|
class LivingEntity;
|
|
class BaseAttributeMap;
|
|
|
|
class HealthBoostMobEffect : public MobEffect {
|
|
public:
|
|
HealthBoostMobEffect(int id, bool isHarmful, eMinecraftColour color);
|
|
|
|
void removeAttributeModifiers(std::shared_ptr<LivingEntity> entity,
|
|
BaseAttributeMap* attributes, int amplifier);
|
|
}; |