mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-30 07:47:11 +00:00
15 lines
486 B
C++
15 lines
486 B
C++
#pragma once
|
|
|
|
class LivingEntity;
|
|
|
|
#include "MobEffect.h"
|
|
|
|
class AbsoptionMobEffect : public MobEffect {
|
|
public:
|
|
AbsoptionMobEffect(int id, bool isHarmful, eMinecraftColour color);
|
|
|
|
void removeAttributeModifiers(std::shared_ptr<LivingEntity> entity,
|
|
BaseAttributeMap* attributes, int amplifier);
|
|
void addAttributeModifiers(std::shared_ptr<LivingEntity> entity,
|
|
BaseAttributeMap* attributes, int amplifier);
|
|
}; |