1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00
vcmi/mapeditor/mapsettings.h

28 lines
373 B
C
Raw Normal View History

2022-09-04 02:12:33 +02:00
#ifndef MAPSETTINGS_H
#define MAPSETTINGS_H
#include <QDialog>
namespace Ui {
class MapSettings;
}
2022-09-04 18:16:36 +02:00
class MainWindow;
2022-09-04 02:12:33 +02:00
class MapSettings : public QDialog
{
Q_OBJECT
public:
2022-09-04 18:16:36 +02:00
explicit MapSettings(MainWindow *parent = nullptr);
2022-09-04 02:12:33 +02:00
~MapSettings();
2022-09-04 18:16:36 +02:00
private slots:
void on_pushButton_clicked();
2022-09-04 02:12:33 +02:00
private:
Ui::MapSettings *ui;
2022-09-04 18:16:36 +02:00
MainWindow * main;
2022-09-04 02:12:33 +02:00
};
#endif // MAPSETTINGS_H