/* * Copyright (C) 2016+ AzerothCore , released under GNU AGPL v3 license, you may redistribute it * and/or modify it under version 3 of the License, or (at your option), any later version. */ #ifndef _PLAYERBOT_PALADIN_PULL_STRATEGY_H #define _PLAYERBOT_PALADIN_PULL_STRATEGY_H #include "PullStrategy.h" class PaladinPullStrategy : public PullStrategy { public: PaladinPullStrategy(PlayerbotAI* botAI) : PullStrategy(botAI, "judgement", "seal of righteousness") {} std::string GetPullActionName() const override; std::string GetPreActionName() const override; }; #endif