2024-08-11 22:44:16 +02:00
|
|
|
/*
|
|
|
|
* CStatisticScreen.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 "../windows/CWindowObject.h"
|
2024-08-11 23:50:16 +02:00
|
|
|
#include "../../lib/gameState/GameStatistics.h"
|
2024-08-11 22:44:16 +02:00
|
|
|
|
|
|
|
class FilledTexturePlayerColored;
|
|
|
|
|
|
|
|
class CStatisticScreen : public CWindowObject
|
|
|
|
{
|
|
|
|
std::shared_ptr<FilledTexturePlayerColored> filledBackground;
|
2024-08-12 01:07:58 +02:00
|
|
|
|
|
|
|
std::vector<std::shared_ptr<CIntObject>> layout;
|
2024-08-12 01:19:00 +02:00
|
|
|
|
|
|
|
StatisticDataSet statistic;
|
2024-08-11 22:44:16 +02:00
|
|
|
public:
|
2024-08-12 01:19:00 +02:00
|
|
|
CStatisticScreen(StatisticDataSet stat);
|
2024-08-11 22:54:19 +02:00
|
|
|
};
|