1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/mapeditor/generatorprogress.h
2022-08-31 01:24:12 +04:00

27 lines
434 B
C++

#ifndef GENERATORPROGRESS_H
#define GENERATORPROGRESS_H
#include <QDialog>
#include "../lib/LoadProgress.h"
namespace Ui {
class GeneratorProgress;
}
class GeneratorProgress : public QDialog
{
Q_OBJECT
public:
explicit GeneratorProgress(Load::Progress & source, QWidget *parent = nullptr);
~GeneratorProgress();
void update();
private:
Ui::GeneratorProgress *ui;
Load::Progress & source;
};
#endif // GENERATORPROGRESS_H