1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/AI/Nullkiller/Pathfinding/Actions/TownPortalAction.h

35 lines
734 B
C
Raw Normal View History

2021-05-15 18:22:44 +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
2021-05-16 13:38:53 +02:00
#include "SpecialAction.h"
2021-05-15 18:22:44 +02:00
#include "../../../../lib/mapping/CMap.h"
#include "../../../../lib/mapObjects/MapObjects.h"
#include "../../Goals/AdventureSpellCast.h"
namespace AIPathfinding
{
2021-05-16 13:38:53 +02:00
class TownPortalAction : public SpecialAction
2021-05-15 18:22:44 +02:00
{
private:
const CGTownInstance * target;
public:
TownPortalAction(const CGTownInstance * target)
:target(target)
{
}
2021-05-16 13:38:53 +02:00
virtual void execute(const CGHeroInstance * hero) const override;
virtual std::string toString() const override;
2021-05-15 18:22:44 +02:00
};
}