Files
mod-playerbots/src/strategy/dungeons/wotlk/azjolnerub/AzjolNerubMultipliers.h
2024-10-07 01:32:00 +11:00

16 lines
344 B
C++

#ifndef _PLAYERBOT_WOTLKDUNGEONANMULTIPLIERS_H
#define _PLAYERBOT_WOTLKDUNGEONANMULTIPLIERS_H
#include "Multiplier.h"
class KrikthirMultiplier : public Multiplier
{
public:
KrikthirMultiplier(PlayerbotAI* ai) : Multiplier(ai, "krik'thir the gatewatcher") {}
public:
virtual float GetValue(Action* action);
};
#endif