mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-06-20 15:39:25 +02:00
18 lines
543 B
C++
18 lines
543 B
C++
#ifndef _PLAYERBOT_WOTLKDUNGEONCOSSTRATEGY_H
|
|
#define _PLAYERBOT_WOTLKDUNGEONCOSSTRATEGY_H
|
|
|
|
#include "Multiplier.h"
|
|
#include "AiObjectContext.h"
|
|
#include "Strategy.h"
|
|
|
|
class WotlkDungeonCoSStrategy : public Strategy
|
|
{
|
|
public:
|
|
WotlkDungeonCoSStrategy(PlayerbotAI* ai) : Strategy(ai) {}
|
|
virtual std::string const getName() override { return "culling of stratholme"; }
|
|
virtual void InitTriggers(std::vector<TriggerNode*> &triggers) override;
|
|
virtual void InitMultipliers(std::vector<Multiplier*> &multipliers) override;
|
|
};
|
|
|
|
#endif
|