mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-04 00:15:53 +02:00
30 lines
753 B
C++
30 lines
753 B
C++
/*
|
|
* 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
|
|
|
|
#include "CTradeBase.h"
|
|
|
|
class CFreelancerGuild : public CCreaturesSelling , public CResourcesMarket
|
|
{
|
|
public:
|
|
CFreelancerGuild(const IMarket * market, const CGHeroInstance * hero);
|
|
void makeDeal() override;
|
|
void deselect() override;
|
|
|
|
private:
|
|
std::shared_ptr<CButton> maxUnits;
|
|
int qtyPerPrice;
|
|
int price;
|
|
|
|
void updateSelected();
|
|
void onOfferSliderMoved(int newVal);
|
|
void onSlotClickPressed(const std::shared_ptr<CTradeableItem> & newSlot, std::shared_ptr<CTradeableItem> & hCurSlot) override;
|
|
};
|