2019-12-15 10:52:10 +00:00
|
|
|
#ifndef CREATURELIB_FLEETURNCHOICE_HPP
|
|
|
|
#define CREATURELIB_FLEETURNCHOICE_HPP
|
|
|
|
|
|
|
|
#include "../Models/Creature.hpp"
|
|
|
|
#include "BaseTurnChoice.hpp"
|
|
|
|
|
|
|
|
namespace CreatureLib::Battling {
|
|
|
|
class FleeTurnChoice : public BaseTurnChoice {
|
|
|
|
public:
|
|
|
|
FleeTurnChoice(Creature* user) : BaseTurnChoice(user) {}
|
|
|
|
|
2020-03-25 18:07:36 +00:00
|
|
|
TurnChoiceKind GetKind() const noexcept override { return TurnChoiceKind ::Flee; }
|
2019-12-15 10:52:10 +00:00
|
|
|
|
|
|
|
protected:
|
2020-03-22 18:21:40 +00:00
|
|
|
void GetActiveScripts(Arbutils::Collections::List<ScriptWrapper>& scripts) override {
|
|
|
|
GetUser()->GetActiveScripts(scripts);
|
|
|
|
}
|
2019-12-15 10:52:10 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CREATURELIB_FLEETURNCHOICE_HPP
|