mirror of
https://github.com/liyunfan1223/mod-playerbots.git
synced 2026-02-21 10:30:01 +01:00
29 lines
738 B
C++
29 lines
738 B
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, 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 * 2000) { }
|
|
|
|
bool IsActive() override;
|
|
};
|
|
|
|
class UnknownDungeonTrigger : public Trigger
|
|
{
|
|
public:
|
|
UnknownDungeonTrigger(PlayerbotAI* botAI) : Trigger(botAI, "unknown dungeon", 20 * 2000) { }
|
|
|
|
bool IsActive() override;
|
|
};
|
|
|
|
#endif
|