#ifndef _PLAYERBOT_WOTLKDUNGEONFOSSTRATEGY_H #define _PLAYERBOT_WOTLKDUNGEONFOSSTRATEGY_H #include "Multiplier.h" #include "Strategy.h" class WotlkDungeonFoSStrategy : public Strategy { public: WotlkDungeonFoSStrategy(PlayerbotAI* ai) : Strategy(ai) {} std::string const getName() override { return "forge of souls"; } void InitTriggers(std::vector &triggers) override; void InitMultipliers(std::vector &multipliers) override; }; #endif // !_PLAYERBOT_WOTLKDUNGEONFOSSTRATEGY_H