mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-04 00:15:53 +02:00
37 lines
600 B
C++
37 lines
600 B
C++
/*
|
|
* VisitHero.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
|
|
|
|
#error not used
|
|
|
|
#include "CGoal.h"
|
|
|
|
struct HeroPtr;
|
|
class VCAI;
|
|
class FuzzyHelper;
|
|
|
|
namespace Goals
|
|
{
|
|
class DLL_EXPORT VisitHero : public CGoal<VisitHero>
|
|
{
|
|
public:
|
|
VisitHero()
|
|
: CGoal(Goals::VISIT_HERO)
|
|
{
|
|
}
|
|
VisitHero(int hid)
|
|
: CGoal(Goals::VISIT_HERO)
|
|
{
|
|
objid = hid;
|
|
}
|
|
virtual bool operator==(const VisitHero & other) const override;
|
|
};
|
|
}
|