mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-04 00:15:53 +02:00
28 lines
416 B
C
28 lines
416 B
C
|
#ifndef MAPSETTINGS_H
|
||
|
#define MAPSETTINGS_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include "mapcontroller.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class MapSettings;
|
||
|
}
|
||
|
|
||
|
class MapSettings : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MapSettings(MapController & controller, QWidget *parent = nullptr);
|
||
|
~MapSettings();
|
||
|
|
||
|
private slots:
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::MapSettings *ui;
|
||
|
MapController & controller;
|
||
|
};
|
||
|
|
||
|
#endif // MAPSETTINGS_H
|