bwl strategy

This commit is contained in:
Yunfan Li
2023-08-28 21:21:58 +08:00
parent b97876dbc2
commit dba908be9e
18 changed files with 196 additions and 20 deletions

View File

@@ -80,4 +80,11 @@ class NaxxChatShortcutAction : public Action
NaxxChatShortcutAction(PlayerbotAI* ai) : Action(ai, "naxx chat shortcut") {}
virtual bool Execute(Event event);
};
class BwlChatShortcutAction : public Action
{
public:
BwlChatShortcutAction(PlayerbotAI* ai) : Action(ai, "bwl chat shortcut") {}
virtual bool Execute(Event event);
};
#endif