mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-03 19:03:49 +00:00
17 lines
297 B
C++
17 lines
297 B
C++
|
|
#ifndef _PLAYERRBOT_RAIDEOEMULTIPLIERS_H
|
|
#define _PLAYERRBOT_RAIDEOEMULTIPLIERS_H
|
|
|
|
#include "Multiplier.h"
|
|
|
|
class MalygosMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
MalygosMultiplier(PlayerbotAI* ai) : Multiplier(ai, "malygos") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
#endif
|