Pet attack (fix shadowfiend)

This commit is contained in:
Yunfan Li
2024-02-08 00:36:16 +08:00
parent 5e2497bf7e
commit 9e78a0b36a
11 changed files with 95 additions and 22 deletions

View File

@@ -25,4 +25,12 @@ public:
virtual bool Execute(Event event) override;
};
class PetAttackAction: public Action
{
public:
PetAttackAction(PlayerbotAI* ai): Action(ai, "pet attack") {}
virtual bool Execute(Event event) override;
};
#endif