mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-12 10:03:53 +02:00
26 lines
657 B
C++
26 lines
657 B
C++
/*
|
|
* CTransferResources.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 CTransferResources : public CResourcesSelling
|
|
{
|
|
public:
|
|
CTransferResources(const IMarket * market, const CGHeroInstance * hero);
|
|
void makeDeal() override;
|
|
void deselect() override;
|
|
|
|
private:
|
|
void updateSelected();
|
|
void onOfferSliderMoved(int newVal);
|
|
void onSlotClickPressed(const std::shared_ptr<CTradeableItem> & newSlot, std::shared_ptr<CTradeableItem> & hCurSlot);
|
|
};
|