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

27 lines
696 B
C++
Raw Normal View History

2024-02-03 22:59:05 +02:00
/*
* CFreelancerGuild.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
2024-03-02 20:30:29 +02:00
#include "CMarketBase.h"
2024-02-03 22:59:05 +02:00
2024-03-20 13:28:19 +02:00
class CFreelancerGuild :
public CCreaturesSelling , public CResourcesBuying, public CMarketSlider, public CMarketTraderText
2024-02-03 22:59:05 +02:00
{
public:
CFreelancerGuild(const IMarket * market, const CGHeroInstance * hero);
2024-03-02 20:30:29 +02:00
void deselect() override;
2024-02-03 22:59:05 +02:00
void makeDeal() override;
private:
2024-03-20 13:28:19 +02:00
CMarketBase::MarketShowcasesParams getShowcasesParams() const override;
void highlightingChanged() override;
2024-03-20 13:28:19 +02:00
std::string getTraderText() override;
2024-02-03 22:59:05 +02:00
};