mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-13 09:07:19 +00:00
12 lines
298 B
C++
12 lines
298 B
C++
#include "RaidAq20Strategy.h"
|
|
|
|
#include "Strategy.h"
|
|
|
|
void RaidAq20Strategy::InitTriggers(std::vector<TriggerNode*>& triggers)
|
|
{
|
|
triggers.push_back(
|
|
new TriggerNode("aq20 move to crystal",
|
|
NextAction::array(0, new NextAction("aq20 use crystal", ACTION_RAID), nullptr)));
|
|
|
|
}
|