mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 03:33:36 +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);
|
|
}; |