kadeshar 85c7009fe1
Codestyle fix (#1797)
Warning:
Dont change this PR as draft to make it testable


DONT REVIEW UNTIL Codestyle C++ workflow dont pass
2025-11-05 21:10:17 +01:00

18 lines
528 B
C++

#ifndef _PLAYERBOT_WOTLKDUNGEONOCCSTRATEGY_H
#define _PLAYERBOT_WOTLKDUNGEONOCCSTRATEGY_H
#include "Multiplier.h"
#include "AiObjectContext.h"
#include "Strategy.h"
class WotlkDungeonOccStrategy : public Strategy
{
public:
WotlkDungeonOccStrategy(PlayerbotAI* ai) : Strategy(ai) {}
virtual std::string const getName() override { return "oculus"; }
virtual void InitTriggers(std::vector<TriggerNode*> &triggers) override;
virtual void InitMultipliers(std::vector<Multiplier*> &multipliers) override;
};
#endif