1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/lib/events/ObjectVisitEnded.h
Konstantin c6b198ce14
Warning fix (I moved C++17 and CI to another branch) (#739)
* clang warning fixes
* use CMake 3.10 due to MXE CI does not have 3.13 yet

Co-authored-by: Konstantin <rilian@niisi.ras.ru>
2022-05-19 15:14:50 +03:00

34 lines
678 B
C++

/*
* ObjectVisitEnded.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 <vcmi/events/ObjectVisitEnded.h>
#include "../GameConstants.h"
namespace events
{
class DLL_LINKAGE CObjectVisitEnded : public ObjectVisitEnded
{
public:
CObjectVisitEnded(const PlayerColor & player_, const ObjectInstanceID & heroId_);
PlayerColor getPlayer() const override;
ObjectInstanceID getHero() const override;
bool isEnabled() const override;
private:
PlayerColor player;
ObjectInstanceID heroId;
};
}