mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-30 15:13:38 +00:00
15 lines
401 B
C++
15 lines
401 B
C++
#pragma once
|
|
|
|
#include "minecraft/GameEnums.h"
|
|
#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);
|
|
}; |