Files
mod-playerbots/src/Scenario/DungeonAi/ForgeOfSouls/Strategy/ForgeOfSoulsStrategy.h
bashermens 9f54d7e702 Removed the expansion folder from dungeons (#2027)
In order to make consistent with raids but also to shorten max used
length directory for windows builds
2026-01-17 21:55:08 +01:00

17 lines
525 B
C++

#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<TriggerNode*> &triggers) override;
void InitMultipliers(std::vector<Multiplier*> &multipliers) override;
};
#endif // !_PLAYERBOT_WOTLKDUNGEONFOSSTRATEGY_H