mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-31 17:33:48 +00:00
16 lines
344 B
C++
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
|