aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/HealthBoostMobEffect.h
diff options
context:
space:
mode:
Diffstat (limited to 'Minecraft.World/HealthBoostMobEffect.h')
-rw-r--r--Minecraft.World/HealthBoostMobEffect.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/Minecraft.World/HealthBoostMobEffect.h b/Minecraft.World/HealthBoostMobEffect.h
new file mode 100644
index 00000000..e5746ba0
--- /dev/null
+++ b/Minecraft.World/HealthBoostMobEffect.h
@@ -0,0 +1,14 @@
+#pragma once
+
+#include "MobEffect.h"
+
+class LivingEntity;
+class BaseAttributeMap;
+
+class HealthBoostMobEffect : public MobEffect
+{
+public:
+ HealthBoostMobEffect(int id, bool isHarmful, eMinecraftColour color);
+
+ void removeAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier);
+}; \ No newline at end of file