[Initialization] Glyphs remove and dual spec

This commit is contained in:
Yunfan Li
2024-06-26 20:30:12 +08:00
parent af5e5a3b07
commit fb404b27a9
7 changed files with 31 additions and 3 deletions

View File

@@ -35,6 +35,13 @@ class MaintenanceAction : public Action
bool Execute(Event event) override;
};
class RemoveGlyphAction : public Action
{
public:
RemoveGlyphAction(PlayerbotAI* botAI) : Action(botAI, "remove glyph") { }
bool Execute(Event event) override;
};
class AutoGearAction : public Action
{
public: