mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-22 04:56:22 +00:00
17 lines
373 B
C++
17 lines
373 B
C++
|
|
#ifndef _PLAYERRBOT_RAIDULDUARMULTIPLIERS_H_
|
|
#define _PLAYERRBOT_RAIDULDUARMULTIPLIERS_H_
|
|
|
|
#include "Multiplier.h"
|
|
#include "raids/ulduar/RaidUlduarBossHelper.h"
|
|
|
|
class FlameLeviathanMultiplier : public Multiplier
|
|
{
|
|
public:
|
|
FlameLeviathanMultiplier(PlayerbotAI* ai) : Multiplier(ai, "flame leviathan") {}
|
|
|
|
public:
|
|
virtual float GetValue(Action* action);
|
|
};
|
|
|
|
#endif |