mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-15 16:16:11 +00:00
23 lines
536 B
C++
23 lines
536 B
C++
#ifndef _PLAYERBOT_RAIDBWLTRIGGERS_H
|
|
#define _PLAYERBOT_RAIDBWLTRIGGERS_H
|
|
|
|
#include "PlayerbotAI.h"
|
|
#include "Playerbots.h"
|
|
#include "Trigger.h"
|
|
|
|
class BwlSuppressionDeviceTrigger : public Trigger
|
|
{
|
|
public:
|
|
BwlSuppressionDeviceTrigger(PlayerbotAI* botAI) : Trigger(botAI, "bwl suppression device") {}
|
|
bool IsActive() override;
|
|
};
|
|
|
|
class BwlAfflictionBronzeTrigger : public Trigger
|
|
{
|
|
public:
|
|
BwlAfflictionBronzeTrigger(PlayerbotAI* botAI) : Trigger(botAI, "bwl affliction bronze") {}
|
|
bool IsActive() override;
|
|
};
|
|
|
|
#endif
|