mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
13 lines
287 B
C++
13 lines
287 B
C++
#pragma once
|
|
|
|
#include "MobEffect.h"
|
|
|
|
class AttributeModifier;
|
|
|
|
class AttackDamageMobEffect : public MobEffect
|
|
{
|
|
public:
|
|
AttackDamageMobEffect(int id, bool isHarmful, eMinecraftColour color);
|
|
|
|
double getAttributeModifierValue(int amplifier, AttributeModifier *original);
|
|
}; |