CStatisticScreen.h 597 B

1234567891011121314151617181920212223
  1. /*
  2. * CStatisticScreen.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 "../windows/CWindowObject.h"
  12. #include "../../lib/gameState/GameStatistics.h"
  13. class FilledTexturePlayerColored;
  14. class CStatisticScreen : public CWindowObject
  15. {
  16. std::shared_ptr<FilledTexturePlayerColored> filledBackground;
  17. public:
  18. CStatisticScreen(StatisticDataSet statistic);
  19. void clickPressed(const Point & cursorPosition) override;
  20. };