1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-10 09:50:17 +02:00
vcmi/AI/VCAI/Pathfinding/Actions/TownPortalAction.h

33 lines
642 B
C++
Raw Normal View History

/*
* 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"
#include "../../Goals/AdventureSpellCast.h"
namespace AIPathfinding
{
class TownPortalAction : public ISpecialAction
{
private:
const CGTownInstance * target;
public:
TownPortalAction(const CGTownInstance * target)
:target(target)
{
}
Goals::TSubgoal whatToDo(const HeroPtr & hero) const override;
};
2023-05-24 01:05:59 +02:00
}