mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-02-20 18:10:02 +01:00
19 lines
541 B
C++
19 lines
541 B
C++
#ifndef _PLAYERBOT_WOTLKDUNGEONHOLSTRATEGY_H
|
|
#define _PLAYERBOT_WOTLKDUNGEONHOLSTRATEGY_H
|
|
|
|
#include "Multiplier.h"
|
|
#include "AiObjectContext.h"
|
|
#include "Strategy.h"
|
|
|
|
|
|
class WotlkDungeonHoLStrategy : public Strategy
|
|
{
|
|
public:
|
|
WotlkDungeonHoLStrategy(PlayerbotAI* ai) : Strategy(ai) {}
|
|
virtual std::string const getName() override { return "halls of lightning"; }
|
|
virtual void InitTriggers(std::vector<TriggerNode*> &triggers) override;
|
|
virtual void InitMultipliers(std::vector<Multiplier*> &multipliers) override;
|
|
};
|
|
|
|
#endif
|