/* * Copyright (C) 2016+ AzerothCore , released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version. */ #ifndef _PLAYERBOT_LFGTRIGGERS_H #define _PLAYERBOT_LFGTRIGGERS_H #include "Trigger.h" class PlayerbotAI; class LfgProposalActiveTrigger : public Trigger { public: LfgProposalActiveTrigger(PlayerbotAI* botAI) : Trigger(botAI, "lfg proposal active", 20) { } bool IsActive() override; }; class UnknownDungeonTrigger : public Trigger { public: UnknownDungeonTrigger(PlayerbotAI* botAI) : Trigger(botAI, "unknown dungeon", 20) { } bool IsActive() override; }; #endif