mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-26 02:09:40 +05:00
14 lines
402 B
C++
14 lines
402 B
C++
#pragma once
|
|
|
|
class LivingEntity;
|
|
|
|
#include "MobEffect.h"
|
|
|
|
class AbsoptionMobEffect : public MobEffect
|
|
{
|
|
public:
|
|
AbsoptionMobEffect(int id, bool isHarmful, eMinecraftColour color);
|
|
|
|
void removeAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier);
|
|
void addAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier);
|
|
}; |