the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 14 lines 323 B view raw
1#pragma once 2 3#include "MobEffect.h" 4 5class LivingEntity; 6class BaseAttributeMap; 7 8class HealthBoostMobEffect : public MobEffect 9{ 10public: 11 HealthBoostMobEffect(int id, bool isHarmful, eMinecraftColour color); 12 13 void removeAttributeModifiers(shared_ptr<LivingEntity> entity, BaseAttributeMap *attributes, int amplifier); 14};