2021-05-16 13:11:35 +02:00
|
|
|
/*
|
|
|
|
* DismissHero.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "CGoal.h"
|
|
|
|
|
|
|
|
namespace Goals
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class DLL_EXPORT DismissHero : public ElementarGoal<DismissHero>
|
2021-05-16 13:11:35 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DismissHero(HeroPtr hero)
|
2021-05-16 13:38:26 +02:00
|
|
|
: ElementarGoal(Goals::DISMISS_HERO)
|
2021-05-16 13:11:35 +02:00
|
|
|
{
|
|
|
|
sethero(hero);
|
|
|
|
}
|
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
void accept(AIGateway * ai) override;
|
2021-05-16 13:38:26 +02:00
|
|
|
std::string toString() const override;
|
2021-05-16 13:11:35 +02:00
|
|
|
virtual bool operator==(const DismissHero & other) const override;
|
|
|
|
};
|
|
|
|
}
|