Create CastGreaterBlessingAction

This commit is contained in:
avirar
2025-01-04 15:34:45 +11:00
committed by GitHub
parent 8f71551fb7
commit 2951e76052

View File

@@ -424,4 +424,13 @@ public:
bool Execute(Event event) override; bool Execute(Event event) override;
bool isUseful() override; bool isUseful() override;
}; };
class CastGreaterBlessingAction : public Action
{
public:
CastGreaterBlessingAction(PlayerbotAI* botAI) : Action(botAI, "cast greater blessing") { }
bool Execute(Event event) override;
};
#endif #endif