mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-14 17:39:09 +00:00
18 lines
396 B
C++
18 lines
396 B
C++
#ifndef _PLAYERBOT_TRADESTATUSEXTENDEDACTION_H
|
|
#define _PLAYERBOT_TRADESTATUSEXTENDEDACTION_H
|
|
|
|
#include "QueryItemUsageAction.h"
|
|
|
|
class Player;
|
|
class PlayerbotAI;
|
|
|
|
class TradeStatusExtendedAction : public QueryItemUsageAction
|
|
{
|
|
public:
|
|
TradeStatusExtendedAction(PlayerbotAI* botAI) : QueryItemUsageAction(botAI, "trade status extended") {}
|
|
|
|
bool Execute(Event event) override;
|
|
};
|
|
|
|
#endif
|