mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 18:13:40 +00:00
13 lines
318 B
C++
13 lines
318 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);
|
|
}; |