Maintenance command

This commit is contained in:
Yunfan Li
2024-03-04 17:13:05 +08:00
parent 6ea696d8a1
commit 3db6f05eb7
11 changed files with 58 additions and 11 deletions

View File

@@ -28,4 +28,10 @@ class TrainerAction : public Action
void TellFooter(uint32 totalCost);
};
class MaintenanceAction : public Action
{
public:
MaintenanceAction(PlayerbotAI* botAI) : Action(botAI, "maintenance") { }
bool Execute(Event event) override;
};
#endif