mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-03 02:43:49 +00:00
25 lines
546 B
C++
25 lines
546 B
C++
#ifndef _PLAYERBOT_WOTLKDUNGEONDTKMULTIPLIERS_H
|
|
#define _PLAYERBOT_WOTLKDUNGEONDTKMULTIPLIERS_H
|
|
|
|
#include "Multiplier.h"
|
|
|
|
class NovosMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
NovosMultiplier(PlayerbotAI* ai) : Multiplier(ai, "novos the summoner") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
class TharonjaMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
TharonjaMultiplier(PlayerbotAI* ai) : Multiplier(ai, "the prophet tharon'ja") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
#endif
|