2019-02-06 14:51:12 +02:00
|
|
|
/*
|
|
|
|
* TownPortalAction.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 "ISpecialAction.h"
|
2019-02-09 17:46:19 +02:00
|
|
|
#include "../../../../lib/mapObjects/MapObjects.h"
|
2019-02-06 14:51:12 +02:00
|
|
|
#include "../../Goals/AdventureSpellCast.h"
|
|
|
|
|
|
|
|
namespace AIPathfinding
|
|
|
|
{
|
|
|
|
class TownPortalAction : public ISpecialAction
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const CGTownInstance * target;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TownPortalAction(const CGTownInstance * target)
|
|
|
|
:target(target)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2024-02-13 16:21:30 +02:00
|
|
|
Goals::TSubgoal whatToDo(const HeroPtr & hero) const override;
|
2019-02-06 14:51:12 +02:00
|
|
|
};
|
2023-05-24 01:05:59 +02:00
|
|
|
}
|