1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/widgets/CArtifactsOfHeroMarket.h

23 lines
642 B
C++
Raw Normal View History

2023-04-23 14:10:35 +02:00
/*
* CArtifactsOfHeroMarket.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 "CArtifactsOfHeroBase.h"
class CArtifactsOfHeroMarket : public CArtifactsOfHeroBase
{
public:
2024-05-02 00:49:17 +02:00
std::function<void(const CArtPlace*)> onSelectArtCallback;
std::function<void()> onClickNotTradableCallback;
2023-04-23 14:10:35 +02:00
2024-03-02 20:30:29 +02:00
CArtifactsOfHeroMarket(const Point & position, const int selectionWidth);
2024-10-28 14:30:19 +02:00
void clickPressedArtPlace(CComponentHolder & artPlace, const Point & cursorPosition) override;
2023-04-23 14:10:35 +02:00
};