mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-23 05:26:22 +00:00
25 lines
675 B
C++
25 lines
675 B
C++
#ifndef _PLAYERBOT_RAIDMCACTIONS_H
|
|
#define _PLAYERBOT_RAIDMCACTIONS_H
|
|
|
|
#include "MovementActions.h"
|
|
#include "PlayerbotAI.h"
|
|
#include "Playerbots.h"
|
|
|
|
class McCheckShouldMoveFromGroupAction : public Action
|
|
{
|
|
public:
|
|
McCheckShouldMoveFromGroupAction(PlayerbotAI* botAI, std::string const name = "mc check should move from group")
|
|
: Action(botAI, name) {}
|
|
bool Execute(Event event) override;
|
|
};
|
|
|
|
class McMoveFromBaronGeddonAction : public MovementAction
|
|
{
|
|
public:
|
|
McMoveFromBaronGeddonAction(PlayerbotAI* botAI, std::string const name = "mc move from baron geddon")
|
|
: MovementAction(botAI, name) {}
|
|
bool Execute(Event event) override;
|
|
};
|
|
|
|
#endif
|