2021-05-15 18:23:11 +02:00
|
|
|
/*
|
2021-05-15 21:04:26 +02:00
|
|
|
* RecruitHeroBehavior.h, part of VCMI engine
|
2021-05-15 18:23:11 +02:00
|
|
|
*
|
|
|
|
* 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 "lib/VCMI_Lib.h"
|
2021-05-16 13:38:26 +02:00
|
|
|
#include "../Goals/CGoal.h"
|
2021-05-15 18:23:11 +02:00
|
|
|
#include "../AIUtility.h"
|
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
namespace Goals
|
2021-05-15 18:23:11 +02:00
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
class RecruitHeroBehavior : public CGoal<RecruitHeroBehavior>
|
2021-05-15 18:23:11 +02:00
|
|
|
{
|
2021-05-16 13:38:26 +02:00
|
|
|
public:
|
|
|
|
RecruitHeroBehavior()
|
2021-05-16 13:38:53 +02:00
|
|
|
:CGoal(RECRUIT_HERO_BEHAVIOR)
|
2021-05-16 13:38:26 +02:00
|
|
|
{
|
|
|
|
}
|
2021-05-15 18:23:11 +02:00
|
|
|
|
2024-03-31 17:39:00 +02:00
|
|
|
TGoalVec decompose(const Nullkiller * ai) const override;
|
2024-02-13 16:21:30 +02:00
|
|
|
std::string toString() const override;
|
2021-05-16 13:38:26 +02:00
|
|
|
|
2024-02-10 21:22:08 +02:00
|
|
|
bool operator==(const RecruitHeroBehavior & other) const override
|
2021-05-16 13:38:26 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
2022-09-26 20:01:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|