[Command] Command autogear

This commit is contained in:
Yunfan Li
2024-05-12 00:22:13 +08:00
parent f475b94ae0
commit 2ca686fc9a
10 changed files with 65 additions and 4 deletions

View File

@@ -34,4 +34,12 @@ class MaintenanceAction : public Action
MaintenanceAction(PlayerbotAI* botAI) : Action(botAI, "maintenance") { }
bool Execute(Event event) override;
};
class AutoGearAction : public Action
{
public:
AutoGearAction(PlayerbotAI* botAI) : Action(botAI, "autogear") { }
bool Execute(Event event) override;
};
#endif