mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-03-25 23:08:13 +05:00
13 lines
275 B
C++
13 lines
275 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);
|
|
}; |