CArtifactsBuying.h 549 B

1234567891011121314151617181920212223
  1. /*
  2. * CArtifactsBuying.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "CMarketBase.h"
  12. class CArtifactsBuying : public CResourcesSelling
  13. {
  14. public:
  15. CArtifactsBuying(const IMarket * market, const CGHeroInstance * hero);
  16. void makeDeal() override;
  17. private:
  18. CMarketBase::SelectionParams getSelectionParams() const override;
  19. void highlightingChanged() override;
  20. };